Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS standardizing space between items Reply To: standardizing space between items

#236631
bearhead
Participant

To center the text vertically, I would wrap the P elements in a div, and use the following css:

.book_list div{
  display:table;
  height:100%;
}
.book_list div p{
 margin:0px;
  display:table-cell;
  vertical-align:middle;
}

http://codepen.io/kvana/pen/WrORqm