Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to y(vertically) center body. Re: How to y(vertically) center body.

#137092
BaliBalo
Participant

If you does not mind targetting quite modern browsers only you can use pseudo elements:

html, body { height: 100%; }
body { text-align: center; }
body::before
{
content: ”;
display: inline-block;
height: 100%;
vertical-align: middle;
}
#content
{
display: inline-block;
}