ดังนั้นฉันจึงมีรหัสนี้ที่นี่:
<table>
<tr>
<td width="200px" valign="top">
<div class="left_menu">
<div class="menu_item">
<a href="#">Home</a>
</div>
</div>
</td>
<td width="1000px" valign="top">Content</td>
</tr>
</table>
ด้วย CSS
.left_menu {
background: none repeat scroll 0 0 #333333;
border-radius: 5px 5px 5px 5px;
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
font-weight: bold;
padding: 5px;
}
.menu_item {
background: none repeat scroll 0 0 #CCCCCC;
border-bottom: 1px solid #999999;
border-radius: 5px 5px 5px 5px;
border-top: 1px solid #FFFFCC;
cursor: pointer;
padding: 5px;
}
มันใช้งานได้ดีบนเบราว์เซอร์ของฉันและฉันได้ทดสอบในทุกเบราว์เซอร์ทั้ง Mac และ PC แต่มีคนบ่นว่าtd
ด้วยwidth
ความกว้าง 200 จะเปลี่ยนไปเรื่อย ๆ ฉันไม่รู้ว่าเขากำลังพูดถึงอะไร ไม่มีใครรู้ว่าทำไมเขาถึงเห็นความกว้างเปลี่ยนไปtd
?