我有HTML表&它的CSS。html css tr設置寬度
CSS:
#outerDIV {
position: relative;
padding-top: 20px;
}
#innerDIV {
overflow-y: auto;
height: 500px;
}
table#mytable tbody tr:first-child
{
width:100%;
position :absolute;
}
HTML:
<div class="outerDIV">
<div class="innerDIV">
<table id="#mytable"></table>
</div>
</div>
我需要表的固定報頭標記,所以是上述代碼沒有,但th標籤的寬度被壓縮到左&與身體的tr's
的寬度不匹配。如何使tr達到100%的寬度?
選中此鏈接(http://stackoverflow.com/q/16984323/1577396) –
提供的代碼不正確。沒有指定ID的表格。 –
已嘗試刪除'position:absolute'? – Bob