我有以下Sass片段,我希望<thead>
在表格滚动时浮动。这适用于Safari,但不适用于Chrome Version 58.0.3029.110 (64-bit)
。
我知道Chrome已经再次支持sticky
,目前支持它,但它是最终的吗?这是Chrome错误还是我需要不同的解决方案? (我更喜欢CSS方法而不是Javascript,因为它的性能更高。)
.table {
thead {
background: white;
position: sticky;
top: 0;
z-index: 10;
}
}
答案 0 :(得分:48)
position:sticky不适用于Chrome中的某些表格元素(thead / tr)。您可以将粘性移动到需要粘贴的tds / ths。像这样:
.table {
thead tr:nth-child(1) th{
background: white;
position: sticky;
top: 0;
z-index: 10;
}
}
这也行。
.table {
position: sticky;
top: 0;
z-index: 10;
}
您可以将标题移动到单独的布局。例如:
<table class="table">
<thead>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
</tr>
</thead>
</table>
<table>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</table>
答案 1 :(得分:23)
对于那些仍在寻找解决方案并且对所接受的解决方案不满意的人。
1)在元素上使用粘贴顶级类。
2)有自己的班级
th.sticky-header {
position: sticky;
top: 0;
z-index: 10;
/*To not have transparent background.
background-color: white;*/
}
<table class="table">
<thead>
<tr>
<th class="sticky-header">1</th>
<th class="sticky-header">2</th>
<th class="sticky-header">3</th>
<th class="sticky-header">4</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
答案 2 :(得分:3)
https://jsfiddle.net/y9cwnb81/4/
div.table {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr auto;
grid-template-areas:
"header header header"
"content content content";
}
.header {
grid: 1fr/1fr;
}
.content {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto;
grid-area: content;
height: 200px;
overflow-y: scroll;
}
.content div {
grid: auto-flow 1fr / repeat(auto-fill);
}
<!-- Here is the table code -->
<div class="table">
<div class="header">Name</div>
<div class="header">Color</div>
<div class="header">Description</div>
<div class="content">
<div>Apple</div>
<div>Red</div>
<div>These are red asd,mas, da,msnd asndm,asndm,asndbansbdansmbdmnasbd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
<div>Apple</div>
<div>Red</div>
<div>These are red asd.</div>
</div>
</div>
以下是使用CSS GRID仅使用CSS来粘贴标头但不需要javascript的示例。
答案 3 :(得分:0)