这对我来说毫无意义,但话又说回来,我与 CSS 专家相差甚远(可能甚至不是一个好的新手)。
我正在使用relative
/absolute
因为我正在使用大表中的动态分页表。我这样做是为了让用户快速浏览数据而不会使客户端超载。
如您所见,table-row
扩展 100%,但table-cell
s 不服从table-layout:fixed
。需要table-cell
s 扩展以填充所有可用table-row
空间。
(旁注,border-collapse: collapse
也不起作用。)
请帮忙。提前谢谢了!
HTML
<div class="gridTable">
<div class="gridRow">
<div class="gridCell">a</div>
<div class="gridCell">JKL;</div>
<div class="gridCell">Jb</div>
</div>
</div>
CSS
.gridTable{
display:table;
table-layout:fixed;
position:relative;
border-collapse: collapse;
}
.gridHeaderRow{
top:0px;
}
.gridRow, .gridHeaderRow{
display:table-row;
position:absolute;
}
.gridCell{
display:table-cell;
}
.gridTable, .gridRow, .gridHeaderRow{
width:100%;
}
.gridTable, .gridTable *{
border-collapse:collapse;
}
.gridTable div{
border-color:black;
border-width:1px;
border-style:solid;
}