Tengo una tabla de este modo:Tabla HTML th ancho de estilo de trabajo no
<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>
Ahora los anchos de columna se establecen correctamente con los porcentajes del IE, pero no en Firefox. (Probablemente FF está haciendo algo correctamente)
¿Hay algo que pueda hacer para ajustar el ancho de las columnas a los porcentajes anteriores tanto en IE como en FF?