Hi, I want the body of my page to have a width of 90% and aligned at center. Its working fine in I.E. but not in Mozzila. This the css: body { width:90%; text-align:center; margin:0 auto; } ....pls help me.
perhaps try wrapping a div around all the content? ie <div align="center" class="wrapper"> .. page content .. </div> and in your css: .wrapper { width: 90%; }