我想要div
與display: table-cell
設置百分比寬度。 display: table-cell
是我最好的選擇,我需要並肩div
s是平等的高度。即使使用表格固定,CSS表格單元格也會忽略寬度
經過研究,我正確地將父母設置爲display: table; table-layout: fixed; width: 100%
,如在許多other threads中找到的,但table-cell
仍填充父母。
.table-wrapper {
display: table;
table-layout: fixed;
width: 100%;
}
.table-cell {
display: table-cell;
width: 25%;
overflow: hidden !important;
border: 1px solid black;
}
<div class="table-wrapper">
<div class="table-cell">
Should be 25%, but it fills .table-wrapper
</div>
</div>
這是不可能的?