我们知道,z-index 生效的条件之一就是元素的 position 要设置为 relative,absolute,或者 fixed 之一。
如下代码:
<thead id="fixed_table_title" class="table-head">
<tr>
<th>Prescriber</th>
</tr>
</thead>
<tbody id="fixed-body" class="table-body" style="transition: -webkit-transform 0s ease-out; transform: translate3d(0px, -24.808px, 0px);">
<tr>
<td>商品1</td>
</tr>
<tr>
<td>商品2</td>
</tr>
<tr>
<td>商品3</td>
</tr>
<tr>
<td>商品4</td>
</tr>
</tbody>
#fixed_table_title{
position: relative !important;
z-index: 10000 !important;
}
#fixed-body{
z-index: 100 !important;
position: relative !important;
}
但是 改变 translate3d 属性移动的时候, thead 还是会被覆盖 ?
看看这个