0

This should be a very simple procedure of putting a container in the centre of the page.

<style type="text/css">
    body{
       margin: 0;
       padding: 0;
    }
    #container{
       width:960px;
       float:left;
       margin:0 auto;
    }
</style>
...
<div id="container">
   Content
</div>

Can anyone tell me why container isn't centered?

Thanks

James Johnson
  • 45,496
  • 8
  • 73
  • 110
sark9012
  • 5,485
  • 18
  • 61
  • 99
  • Do you mean horizontally centered, vertically or both? – acme Apr 05 '12 at 15:18
  • I happened to notice that your CSS is not in ` – Hubro Apr 05 '12 at 15:19
  • try this; `text-align: center;` in #container – m-t Apr 05 '12 at 15:22
  • This question has been asked probably 1000x: http://stackoverflow.com/questions/8445133/html-center-align-not-working http://stackoverflow.com/questions/8412971/working-with-css-to-align-center http://stackoverflow.com/questions/3202612/div-align-center – Christoph Apr 05 '12 at 15:23
  • If he sets `text-align: center;` on `#container` he'll center the text in the container. :p – Dissident Rage Apr 05 '12 at 15:23
  • It's because I included float:left...the answers below helped me realise this. @Codemonkey the code was in the styles tags, I just removed it for ease on here. Thanks for your replies. Christoph I know it's been answered before and I looked but couldn't work it out! Was the float element. – sark9012 Apr 05 '12 at 15:27
  • http://stackoverflow.com/questions/5523632/aligning-a-floatleft-div-to-center "you can't centre floats" – Christoph Apr 05 '12 at 15:30
  • But it's okay, if it helped you. Just accept an answer and look for answers more thoroughly next time;) – Christoph Apr 05 '12 at 15:31

2 Answers2

6

margin:0 auto; gives auto margin to left and right and that would make it center.

if its not centered that would be because of the float:left;

MakuraYami
  • 3,398
  • 3
  • 16
  • 19
2

Did you mean "isn't appearing"?

Set text-align:center; on body and remove float:left; from #container.

Dissident Rage
  • 2,610
  • 1
  • 27
  • 33