Forums

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

Home Forums CSS Position Logo In Exact Center Of Screen? Re: Position Logo In Exact Center Of Screen?

#137003
BaliBalo
Participant

A good trick for centering using pseudo-elements of the parent:
(assuming #element is what you want to center in its parent and #parent its parent)

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

A few remarks:
– Don’t forget to put html and body height to 100% if you don’t have enough content to cover the window.
– It only works on browsers that support pseudo-elements (any modern browser)