According to Are H1,H2,H3,H4 tags block or inline elements?
h1, h2, etc
are block elements
I am trying to center an h1
, but margin: 0 auto
does not work.
This confuses me because according to What is the meaning of `auto` value in a CSS property.
a block element with
margin: 0 auto
will have the left and right margins increased until it becomes centered along the y-axis of the viewport.
<h1 style="margin: 0 auto">Is this centered?</h1>
What am I missing?