willpracht
2/6/2014 - 11:34 PM

Vertically aligning something via translate.

Vertically aligning something via translate.

.center {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
  
  /*
  Not even necessary really. 
  e.g. Height could be left out!
  */
  width: 40%;
  height: 50%;
}