我在我的应用程序中使用angular4-data-table。我需要使用垂直滚动条显示固定的标题。我已经通过更改angular4-data-table API中的table.template.ts文件来显示垂直和水平滚动条。 现在,滚动条(垂直和水平)的显示方式如下。 在table.template.ts文件中,我将表包围在具有滚动条的DIV中。 有什么方法可以在'data-table> thead> tr> th {'类中添加属性以固定标头。
<div class="data-table-box" [ngClass]="cssProp">
<table class="table table-condensed table-bordered data-table" >
<thead>
<tr>
</tr>
</thead>
<tbody
</tbody>
</table>
</div>
.cssProp{
overflow-x:scroll;
max-height:460px;
width: 99%;
}
.data-table > thead > tr > th {
????
}