How do I center an h1 in the body

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.

Leave a Comment