Definition and UsageThe display property specifies the type of box an element should generate. illustrate This attribute is used to define the type of display frame that the element generates when building a layout. For document types such as HTML, using display can be dangerous if not careful, because it can violate the display hierarchy defined in HTML. With XML, since XML has no such hierarchy built into it, all display is absolutely necessary.
Elements with display: table-cell set:
The effect picture achieved above is that the left avatar part uses the float left floating attribute, and the right side uses display: table-cell to achieve a two-column adaptive layout. display: table; The outer layer defines the width and height, and the content inside adapts to the width and height. If the child element is a div, the width of each column is not equally divided. Therefore, it is recommended to use li tags for child elements .css-table { display: table; height: 2rem; width: 5rem; } .css-table-bg { display: table-cell; vertical-align: middle; text-align: center; background-color: coral; } .css-table li { display: table-cell; vertical-align: middle; text-align: center; background-color:darkkhaki; } <div class="css-table"> <div class="css-table-bg">1</div> <div class="css-table-bg">2</div> <div class="css-table-bg">3</div> </div> <div class="css-table"> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Clients</a></li> </ul> </div> This is the end of this article about how to solve the problem of adaptive height and width of CSS display table. For more relevant content about adaptive CSS display table, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. We hope that you will support 123WORDPRESS.COM in the future! |
<<: Brief introduction and usage of Table and div
>>: How to directly reference vue and element-ui in html
This article introduces an example of using HTML+...
This article example shares the specific code for...
Html code: Copy code The code is as follows: <t...
MySQL 5.7.9 version sql_mode=only_full_group_by i...
Readonly and Disabled both prevent users from cha...
Question How to access the local database in Dock...
React originated as an internal project at Facebo...
Swap memory mainly means that when the physical m...
1. The mysqldump backup method uses logical backu...
1. Docker network management 1. Docker container ...
Table of contents 1. What is a prototype? 1.1 Fun...
1. Dashed box when cancel button is pressed <br...
Official website address: https://dev.mysql.com/d...
// It took me a whole afternoon to install this, ...
1. Referential Integrity Referential integrity re...