Thread
:
Help centering elements on page in CSS
View Single Post
#
3
(
permalink
)
04-08-2006, 03:11 PM
cssiscool
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>
cssiscool
View Public Profile
Find all posts by cssiscool