Home › Forums › CSS › Position Logo In Exact Center Of Screen? › Re: Position Logo In Exact Center Of Screen?
May 30, 2013 at 3:09 am
#137003
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)