Click here to Skip to main content
15,889,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
Hi All,

This is my sample design

<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
 <tr>
    <td>
        <table cellpadding="0" cellspacing="0" border="0" width="80%" align="center">
         <tr>
           <td>
                ***** SOME NONSENSE HERE *****
           </td>
         </tr>
        </table>
    </td>
 </tr>
</table>

If i run this It works fine in IE exact Center it is coming
Where as if i run in Mozilla & Chrome It is not getting at center?
What is the reason behind this?
Can any body solve this query?

Thanks In Advance,
VenkateshDesaiK.
Posted
Updated 7-Mar-13 23:37pm
v2

1 solution

XML
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
 <tr>
    <td align="center">
        <table cellpadding="0" cellspacing="0" border="0" width="80%" align="center">
         <tr>
           <td>
                ***** SOME NONSENSE HERE *****
           </td>
         </tr>
        </table>
    </td>
 </tr>
</table>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900