2014-02-26 88 views
2

我做佈局,引導,我的CSS是如下(調試背景色設置):股利表佈局 - 細胞相同的高度

<div class="row" style="display: table; width: 100%; height: 100%; background-color: red;"> 
    <div class="col-md-8" style="display: table-cell; height: 100%; background-color: blue;"> 
     <textarea id="events-text" class="form-control" style="height: 100%;"></textarea> 
    </div> 
    <div class="col-md-4" style="display: table-cell;"> 
     <div class="btn-group-vertical" style="width: 100%;"> 
      {% for category in categories %} 
      <button class="btn btn-default btn-xs category-select"> 
       {{ category.name }} 
      </button> 
      {% endfor %} 
     </div> 
    </div> 
</div> 

而且效果:

enter image description here

我希望textarea與右側的按鈕具有相同的高度。問題是它的表格單元格不能全高,所以也不會去textarea。我怎樣才能讓這個表格單元格的高度與右側的高度相同?

回答