kaioe
7/23/2017 - 5:04 AM

css:Vertically-Center Anything

Vertically Center Anything using CSS

/* No, it's not black magic, you really can center elements vertically: */

html, body {
  height: 100%;
  margin: 0;
}

body {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  
  display: -webkit-flex;
  display: flex;
}