我一直有在我的網頁的這部分困難,在這裏你可以看到很多的測試的話。我試圖做的是使td自動的高度,所以無論何時提交一條消息,其寬度不會擴大。我已經限制它的寬度屬性,但它不工作,我自己也嘗試在CSS中有顯示塊,但它並沒有在所有幫助,什麼是解決這一問題的最好方法是什麼? 這裏是圖像: http://img209.imageshack.us/img209/4439/errrorx.pngHTM表寬度擴張難度
這是我的表碼
<table class="itemlist" width="100%" cellspacing="1" cellpadding="4">
<tr class="det_msg">
<td><?php echo $detail ?></td>
</tr>
</table>
,這裏是我的CSS
.det_msg td{
margin:6px;
width:920px;
color: #fff;
border-bottom:1px solid #333;
font-family:Arial;
font-size: 12px;
color: #000000;
margin-left:100px;
padding:50px;
}
你爲什麼要使用這樣的表?它似乎不像你顯示錶格數據。 – millimoose