bishawjit-das
7/11/2015 - 6:08 PM

Vertical align anything with just 3 lines of CSS

Vertical align anything with just 3 lines of CSS

.element {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}