Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to center DIV in DIV?

I want to center a <div> (yes, pretty easy question, but I'm new to HTML5 and the <center> tag is no more), and by all means avoid using a table. This is what I've got as CSS for the <div> in question so far:

#roundedcorner {
-moz-border-radius: 15px;
border-radius: 15px;
background-image: url(file:///Macintosh%20HD/Users/julesmazur/Desktop/TAN3.0/Photos/bodydivbg.png);
width: 960px;
left: 50%;
font-family: Ubuntu;}

(for anyone curious, Ubuntu courtesy of Google Web Fonts).

share|improve this question
2  
I usually refer to this page when I need to center something: w3.org/Style/Examples/007/center.en.html – Kristopher Johnson Dec 21 '11 at 0:36

migrated from superuser.com Dec 21 '11 at 0:26

marked as duplicate by casperOne Dec 22 '11 at 14:38

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

Don't use left. This will create a gab in the page on the left side. Instead, use margin: 0 auto.

<div style="margin:0 auto;width:960px">I'm centered.</div>
share|improve this answer

The typical trick is margin: auto. It'll center it inside what-ever it's in.

demo


Besides that I have a few comments on your code (since you're a beginner).

  • left: 50%; does nothing unless you change the position style, e.g., position: relative; or position: absolute;
  • The container the div is in needs to be larger than it -- otherwise centering it really doesn't mean anything. This is because styles like margin: auto are relative to the parent container, i.e., it needs space.
  • For Google Web Fonts, make sure you have your @font-face with it. Also, use alternatives. Not all browsers support web fonts, and the more control you have: the better. An example would be font-family: Ubuntu, Arial, Sans;, ordered from most preferred to most likely backups.
share|improve this answer

You can center DOM elements that are absolutely positioned (horizontally and vertically) by using:

div {
    position    : absolute;
    width       : 960px;
    height      : 500px;
    left        : 50%;
    top         : 50%;
    margin-top  : -250px;
    margin-left : -480px;
}

Here is a demo: http://jsfiddle.net/KBHjT/

share|improve this answer
<center><div></div></center>

try that

share|improve this answer
2  
The OP says HTML5. The <center> element is not allowed in HTML5, which is why you're getting down votes. – FakeRainBrigand Dec 21 '11 at 0:39
1  
This tag has been deprecated in HTML 4. Source: developer.mozilla.org/en/HTML/Element/center – Jasper Dec 21 '11 at 0:41