Tableau HTML th style de largeur de travail

J'ai un tableau comme ceci:

<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%;">
                &nbsp;
            </th>
        </tr>
    </thead>
<tbody>

Maintenant la largeur des colonnes sont définies correctement pour les pourcentages dans IE, mais pas sous firefox. (Probablement FF faire quelque chose correctement)

Il ya quelque chose que je peux faire pour obtenir les largeurs des colonnes pour être fixé au-dessus des pourcentages dans IE et FF?

OriginalL'auteur Riain McAtamney | 2011-03-08