Angular6:需要在html表中显示空白行,并保留表大小的剩余空间[没有Code / JS / Jquery的任何外部逻辑]

时间:2018-10-24 21:37:47

标签: html css angular bootstrap-4

我有一个在Angular 6中具有动态绑定的表。

<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr *ngFor='let data of columnData'>
         <td>{{data.Name}}</td>
        <td>{{data.Purpose}}</td>
        <td>{{data.Location}}</td>
  </tr>
  <tr>
    <td></td>
  </tr>
</table>

我需要在表格中动态显示空白行以获取剩余高度。无需执行任何DOM操作/ Code / JS / JQuery。

bootstrap 4.0有什么解决方案吗? html是否具有执行此操作的任何属性?

0 个答案:

没有答案