无法使标题响应表变粘

时间:2019-04-30 17:08:43

标签: angular html-table sticky

我使用的是6号角,当我滚动时,我想使响应表标题变粘,问题是当我使它变粘性时,我的标题表的宽度与我的响应列不同。

我无法完成该职位:在我身上粘了,所以我尝试使用角度模块https://w11k.github.io/angular-sticky-things/ 我也尝试在Jquery中自己完成此操作,但与模块的结果相同,导致其位置更改为固定...

<div class="table-responsive" #spacer *ngIf="deals?.list?.length">
<table [style.width.%]="100" >
<mng-sort-thead >
<tr style="background-color:white;position:sticky"  >
  <th
    *ngFor="let column of columns" (click)="sort(column.key)">
    {{ column.titleTable }}
  </th>
</tr>
 </mng-sort-thead>
 <tbody class="mt-15">
<tr *ngFor="let item of deals.list">
<td></td>
</tr>
</tbody>
</table>

有人知道为什么position:stciky无法使用吗? 还是一种前往我的标题表的方式来保持列的宽度? 谢谢

0 个答案:

没有答案