How to vertically center a container inside a section

http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/

  1. give the element a relative position
  2. give it a top:50%;
  3. go down to the transform styles, then give it a -50% y

if you’re looking for absolute center of the screen: http://codepen.io/shshaw/full/gEiDt#Fixed

9 Likes