Code Snippet
Centering a Website
<body>
<div id="page-wrap">
<!-- all websites HTML here -->
</div>
</body>
#page-wrap {
width: 800px;
margin: 0 auto;
}
<body>
<div id="page-wrap">
<!-- all websites HTML here -->
</div>
</body>
#page-wrap {
width: 800px;
margin: 0 auto;
}
You also need to do
body
{
text-align: center;
}
#page-wrap
{
text-align: left;
width: 800px;
margin: 0 auto;
}
As IE won’t always do auto margins.
Thanks!
My organization has an older version of IE so the code didn’t work the first go around. Adding the body element worked perfectly!
IE is not ok…
Upgrade IE or use mozilla…
Upgrading IE is not an option for a lot of people. A lot of organisations lock their systems to that software can’t be updated and new software can’t be installed. Fixes for IE generally still need to be included.
Continuing to support IE6/7 by making hacks and workarounds hurts the web industry… you don’t add compatibility stuff for 10-year old Mozilla… do you?
@Alexander: It’s not possible for some developers to drop support for IE6/7. I’m the front-end dev for an eCom site that still has a double-digit percentage of IE6 users thanks to education and enterprise. It’s a sad reality, but I still have to include IE hacks in my code.
Für den IE Versucht es mal so:
#page-wrap
{
position: absolute;
left: 50%;
width: 800px;
margin-left: -400px;
}
Absolute positioning will not be a good solution for complicate websites. The main snippet + (center aligned body)is the best solution
You can also use the
<pre>
<center>
</pre>
tag at the top of the page.
Do ist like this:
#page-wrap {
width: 800px;
text-align: center;
margin: 0 auto;
}
*{
margin:0px;
padding:0px;
}
body {
text-align:center; /* thi is good */
}
#page-wrap {
width: 800px;
text-align:left;
margin: 0 auto;
}
you can use following code, it will run in all browsers properly
Ashish, no can see your code!
in safari i have a problem with the code…
safari is ok for me
Thanks so much … got it sorted just lacked the word auto!!!
Thanks for sharing keep helping us!
very helpfull, thanks for sharing Eddie
hi ed…. thanks for this tutorial……!
actly what i use to face earlier when i use to slice my design in photoshop and export to webpage then the whole page was portrait on the left side of the page, so i think with this code it’s not gonna happen right …………?
in old IE’s just use doctype as first page element, exemple:
…
and margin:auto will be work
Great tutorial for noobs (i am one of the best noobs!)
I made it thnx chris!
It is the same in php and html?
Love css any guide to learn more???
Amazing content/posts/tutorials on this website, you totally rock man!
Text align center should never be used to position an object. Zeroing out my margins and padding with a wild card is also another poor practice. I would recommend using EricMeyer’s CSS reset. If margin: 0 auto is causing you issues, use:
#page-wrap {
position: absolute;
left: 50%;
width: 800px;
margin-left: -400px;
}
This made sense and worked flawlessly for me. There was also no need for me to change text alignment in the body selector’s css. Thanks Bob.
i think the best way is
#page-wrap{
width:800px;
margin-left:auto;
margin-right:auto;
}
and done
The tutorial is done correctly people! remember to set your DOCTYPE correctly.
the best to use would be..
!DOCTYPE html
I have used two primary methods for this in the past, but I’ve probably used the latter more often..
method #1, lightweight. . .
html, body { text-align:center; width:100%; height:100%; } /* original thread code */ #page-wrap {etc..}and method #2, which should override any problems…
html, body, { text-align:center; width:100%; height:100%; } #fullpage-div /* usually named container or wrapper */ { text-align:center; width:100%; height:100%; } /* of course you'd add that div to the html, body style to compress your code, I included it separately here to illustrate the additional container. */ /* then add the margin 0 auto container which in this case is the original thread code */ #page-wrap {etc..}Whatcha think?
where to learn more???
I have a website build in WordPress.Is this code capable for it?
Lot of programs have automatic centering, wordpress dosnt?
*{padding: 0; margin: 0 auto;}
body{
text-align: center;
}
#page-wrap{
width: 800px;
position: relative;
text-align: left;
}
#page-wrap
{
width: 800px;
margin: auto;
}
DigWP
A book and blog co-authored by Jeff Starr and myself about the World's most popular publishing platform.
Quotes on Design
Design, like Art, can be an elusive word to define and an awfully fun thing to have opinions about.
HTML-Ipsum
One-click copy to clipboard access to Lorem Ipsum text that comes wrapped in a variety of HTML.
Bookshelf
Hey Chris, what books do you recommend? These, young fertile mind, these.