html - Chrome Table Division Handling different than IE -
i new css. when run following code in ie lines spans expected, fixing there widths 100px , padding sides space necessary depending on window size.
<table id="tblrecordcount" style="width:100%"> <tr> <td /> <td style="width:100px"> <span id="lbl1" runat="server">records1</span> </td> <td style="width:100px"> <span id="lbl2" runat="server">records2</span> </td> <td style="width:100px"> <span id="lbl3" runat="server">records3</span> </td> <td /> </tr> </table>
when run in chrome browser either sets first td width 0px , fills in last one, or sets first , last 0 , stretches middle ones fill space.
any css tricks tell chrome behave? can see behavior in jsfiddle.
Comments
Post a Comment