We're a place where coders share, stay up-to-date and grow their careers.
You could also use the old style:
#content { margin: 0 auto; } but this works only on block elements, so just add display: block; for inline elements.
#content { margin: 0 auto; }
display: block;
Thanks for sharing!
That would only center horizontally though.
Yes, that's right. Although, to align both horizontally and vertically you can also use margin in combination with position.
margin
position
here is an example
You could also use the old style:
#content {
margin: 0 auto;
}
but this works only on block elements, so just add
display: block;
for inline elements.Thanks for sharing!
That would only center horizontally though.
Yes, that's right.
Although, to align both horizontally and vertically you can also use
margin
in combination withposition
.here is an example