所以我似乎沒有表格單元格達到正確的寬度。有誰能幫我解決這個問題嗎?改變寬度百分比似乎沒有做任何事情。任何建議都會很棒。謝謝。使用寬度百分比不起作用
<html>
<body style="position:fixed; top:0px; left:0px;bottom:0px; right:0px; margin:0px;">
<div style='display : table; width : 100%; height : 100%'>
<div style='display : table-row; width : 100%; height : 70%;'>
<div style="height:70%; width:40%; border:solid; display : table-cell;">
blah
</div>
<div style="height:70%; width:60%; border:solid; display : table-cell;">
kah
</div>
</div>
<div style='display : table-row; width : 100%; height : 30%;'>
<div style="height:30%; width:100%; border:solid; display : table-cell;">
hah
</div>
</div>
</div>
</body>
</html>