Friday, January 23, 2015

Vertical alignment in bootstrap

Since bootstrap itself doesn't have a vertical alignment feature (At least I haven't find any good results after some search), I came into a forum that posted this CSS that solved my problem.

position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);

No comments:

Post a Comment