我有一個表,像這樣:HTML表級風格寬度不工作
<table id="MyTable" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th style="width: 30%;">
<asp:Literal ID="LitDescriptionTitle" runat="server" />
</th>
<th style="width: 30%;">
<asp:Literal ID="LitDescription2Title" runat="server" />
</th>
<th style="width: 30%;">
<asp:Literal ID="LitAddressTitle" runat="server" />
</th>
<th style="width: 10%;">
</th>
</tr>
</thead>
<tbody>
現在列寬被正確地設置在IE百分比,但不是在Firefox。 (可能FF做正確的事情)
有什麼我可以做的,以獲得固定在IE和FF的上述百分比列的寬度?