I have a table like:
<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>
Now the column width is set correctly for percent in IE, but not in firefox. (Maybe FF is doing something right)
Is there something I can do to get the width of the columns to fix the above percentages in IE and FF?
html html-table width
Rian mcatamney
source share