如何在colst引导3容器元素中垂直居中

时间:2014-09-21 11:41:24

标签: html css twitter-bootstrap twitter-bootstrap-3

你能告诉我如何在bootstrap3容器中激活一个col吗?我提出了将其定义为display:table的解决方案,但问题是col的高度为100%。 提前谢谢......

<div class="container" style="height:100%;">
   <div class="row" style="height:100%;">
      <div class="col-md-6">
       Vertrically center me!
      </div>
   </div>
</div>

编辑:

我所要做的就是添加另一个div作为内部容器。谢谢你

<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>

0 个答案:

没有答案