I have a kind of forum-table based on bootstrap grid system. Here is my HTML:
<div id=questions-table>
<div class="row">
<a href="question" class="col-md-7">This is forum question</a>
<span class="col-md-1">25 answers</span>
<div class="col-md-4" id=last-reply>
<img data-src="holder.js/60x60"/img>
<span id=author>Alexander</span>
<span id=date>22 september 2014</span>
</div> <!-- end col-md-4 -->
</div><!-- end row -->
</div> <!-- end questions-table -->
I want all these elements (<a class="col-md-7">
, <span class="col-md-1">
and <div class="col-md-4">
) to be vertically centered inside of the row. vertical-align property doesn't work. What am I doing wrong and how to make this work?