I have two columns (div { float: left; }
, as you may know) in the Bootstrap Structure. The problem is to make the content inside one div
go the middle (vertical). So, it doesn't matter the height of the second columns, the second column will always be on the middle.
It is not an line of text. In my case will be an image and a title. Two blocks of elements.
Here's the example: http://jsfiddle.net/almino_melo/L4rK5/.
I tried to put another div
inside it with display: table;
rule and then another one with display: table-cell;
and vertical-align: middle;
. But it didn't work.