View Single Post
  #3 (permalink)  
Old 04-08-2006, 03:11 PM
cssiscool's Avatar
cssiscool cssiscool is offline
Registered User
 
Join Date: Apr 2006
Posts: 6
cross-browser horizontal centering. use both methods in your page.

<style type="text/css">
body {
/* center for internet explorer */
text-align:center;
/* center for all other browsers */
margin:0 auto;
}
</style>
Reply With Quote