Lego2012
12/13/2016 - 3:28 PM

Centering using Tables

Centering using Tables

#outer {
   display: table;
   width: 100%;
   height: 100%; /* Height can be anything */
}
#inner {
   display: table-cell;
   vertical-align: middle;
   text-align: center;
}