【发布时间】:2014-11-06 01:07:09
【问题描述】:
我在 tbody 和 thead 上使用 transform: translateY 将它们定位在一个大 div 中。
table thead {
transform: translateY(200px);
background: green;
}
table tbody {
transform: translateY(190px);
background: blue;
}
在 webkit(Chrome 和 Safari)中,tbody 覆盖了 thead - 即使我将 z-index 添加到两个选择器。 Here an example。 thead 应始终可见,tbody 应在背景中具有较低的 z-index。
为什么有办法解决它?
【问题讨论】: