Skip to content Skip to sidebar Skip to footer

'vertical-align: Middle' Does Not Work

http://codepen.io/abdulahhamzic/pen/rLBoOj I'm trying to get the paragraphs (the name and other info of the stream) to be vertically aligned in the middle of their div parents. I'm

Solution 1:

Will your icon always be 73px? If so you could use that to extend the height of your name/other info.

http://codepen.io/anon/pen/pbJVvG

.col-sm-4 p {
  line-height: 73px;
}

Post a Comment for "'vertical-align: Middle' Does Not Work"