Please create a table and add two columns and centralize the table in the page and add some text like 123 to each column and finally centralize the text in each column too.
Now compare the output in firefox and IE7
Don't you notice that firefox displays the table correctly while IE7 doesn't display it correctly ?
IF that's true , can you confirm and can someone explain what's causing this , this is my html code:
Code:<body > <form id="form1" runat="server"> <table style="width: 681px" align="center"> <tr> <td style="width: 100px; text-align: center;"> 123</td> <td style="width: 100px; text-align: center;"> 123</td> </tr> </table> </form> </body>
![]()




Reply With Quote