could you tell me how to vcenter a col within a bootstrap3 container? I came up with the solution to define it as a display:table, but the problem is that the col get's an height of 100% then. Thanks in advance...
<div class="container" style="height:100%;">
   <div class="row" style="height:100%;">
      <div class="col-md-6">
       Vertrically center me!
      </div>
   </div>
</div>
Edited:
All I had to do was add another div as innercontainer. Thanks you
<div class="container" style="height:100%;">
   <div class="row" style="height:100%;">
      <div class="col-md-6">
         <div class="inner-container">
            Vertrically center me!
         </div>
      </div>
   </div>
</div>
 
    