我使用靜態(在較低屏幕上滾動時它保持在同一位置),Bootstrap在響應表中固定大小的第一列(100px)。我想要的是使用最小寬度的css(其餘的空間爲100%-100px)其他列具有相同的大小(所以當它響應較低的響應開始工作時)。我不知道多少非靜態列我會有這麼col-md/xs ..是不適當的。Bootstrap響應表列大小
在 photo有日期的應該共享剩餘空間,但只有最小寬度,例如80px。如果低於那麼響應應該工作。無論如何,我想制定時間表。
代碼源:
<div class="table-responsive">
<table class="table table-condensed table-bordered" ng-if="showTable">
<thead>
<tr style="background-color: #455A64; color: #FFFFFF;">
<th style="background-color:#F5F5F5;"></th>
<th ng-repeat="..." ng-if="..." id="{{...}}">{{ ... }}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="..." ng-if="...">
<td style="text-align:center;background-color:#607D8B; color:#FFFFFF">{{ ... }}</td>
<td ng-repeat="..." rowspan="{{...}}" ng-if="...">{{ ... }} </td>
</tr>
</tbody>
</table>
<div>
還有一件事。我不想在td中輸入文字以超過表格邊框。所以它應該適應td的大小。
正如我在問題告訴..的Col-MD和其他人將無法正常工作CAS我不知道有多少TD將在那裏。它依賴於時間表,我從數據庫獲取 –