0
我需要添加垂直滾動條到表ID =「項目」(取決於表中的項目的高度或數量),我嘗試通過添加style =「height:200px;溢出:自動」,但由於ng-repeat,滾動條被添加到單獨的行而不是完整的表格。任何人都可以幫我解決問題嗎?垂直滾動條到表
<div class="col-md-12" style="padding-top:10px" ng-show="itemCodesExists.length > 0">
<div class="col-md-12">
<table border="1">
<tr>
<th style="width:100px;text-align:center">ItemCode</th>
<th style="width:100px;text-align:center">ItemDescription</th>
<th style="width:100px;text-align:center">ItemQuantity</th>
</tr>
</table>
<div ng-repeat="item in itemCodesExists">
<table id="items" style="overflow-y:auto" border="1">
<tr style="text-align:center">
<td style="width:100px">{{item.ItemCode}}</td>
<td style="width:120px">{{item.Description}}</td>
<td style="width:100px">{{item.Quantity}}</td>
</tr>
</table>
</div>
</div>
</div>