csshtml-heading

How do I center an h1 in the body


I tried centering my h1 in the body tag like this:

h1 {margin:0 auto}

http://jsfiddle.net/qPDwY/

But it doesn't center. How do I fix it?


Solution

  • In this case:

    h1 {
        text-align:center;
    }
    

    jsFiddle example

    The margin:auto rule is used when you set a width on the element, which you haven't done.