CSS

Getting Started Selectors Background Transform Transition Grid Filter Fonts Dead Center SASS Mobile (@media) Animation Print ***
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

CSS : Dead Center

2017-11-02

Dead Center

This will show up in the vertical and horizontal center regardless of screen size.

#deadcenter {
    width: 600px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -150px 0 0 -300px;
}

See the Pen Dead Center by ninjajalapeno (@ninjajalapeno) on CodePen.