Home > Article > Web Front-end > Can CSS Control Table Cell Widths Regardless of Content Size?
In the realm of HTML tables, ensuring the uniform width of table cells can be a challenge when dealing with content of varying sizes. Can we achieve this desired outcome purely through CSS, regardless of the number of cells involved?
The HTML structure is straightforward: a parent
<code class="html"><div style="display: table;"> <div style="display: table-cell;"></div> <div style="display: table-cell;"></div> </div></code>
CSS can be leveraged to address this issue. To ensure equal cell widths, regardless of content size, we need to:
The final CSS code appears as follows:
<code class="css">div { display: table; width: 250px; table-layout: fixed; } div > div { display: table-cell; width: 2%; }</code>
With this approach, the table cells will maintain equal widths, ensuring a consistent appearance regardless of their content.
The above is the detailed content of Can CSS Control Table Cell Widths Regardless of Content Size?. For more information, please follow other related articles on the PHP Chinese website!