Uma solução CSS pura real com uma linha de cabeçalho fixa e primeira coluna
Tive que criar uma tabela com um cabeçalho fixo e uma primeira coluna fixa usando CSS puro e nenhuma das respostas aqui foi exatamente o que eu queria.
A position: sticky
propriedade oferece suporte tanto para a fixação no topo (como já vi que é mais usada) quanto para as laterais nas versões modernas do Chrome, Firefox e Edge. Isso pode ser combinado com um div
que tem a overflow: scroll
propriedade de fornecer uma tabela com cabeçalhos fixos que podem ser colocados em qualquer lugar da página:
Coloque sua mesa em um recipiente:
<div class="container">
<table></table>
</div>
Use overflow: scroll
em seu contêiner para permitir a rolagem:
div.container {
overflow: scroll;
}
Como Dagmar apontou nos comentários, o contêiner também requer um max-width
e um max-height
.
Use position: sticky
ter células tabela vara até a borda e top
, right
ou left
de escolher qual borda a vara para:
thead th {
position: -webkit-sticky; /* for Safari */
position: sticky;
top: 0;
}
tbody th {
position: -webkit-sticky; /* for Safari */
position: sticky;
left: 0;
}
Como MarredCheese mencionou nos comentários, se sua primeira coluna contém <td>
elementos em vez de <th>
elementos, você pode usar tbody td:first-child
em seu CSS em vez detbody th
Para que o cabeçalho da primeira coluna fique à esquerda, use:
thead th:first-child {
left: 0;
z-index: 1;
}
/* Use overflow:scroll on your container to enable scrolling: */
div {
max-width: 400px;
max-height: 150px;
overflow: scroll;
}
/* Use position: sticky to have it stick to the edge
* and top, right, or left to choose which edge to stick to: */
thead th {
position: -webkit-sticky; /* for Safari */
position: sticky;
top: 0;
}
tbody th {
position: -webkit-sticky; /* for Safari */
position: sticky;
left: 0;
}
/* To have the header in the first column stick to the left: */
thead th:first-child {
left: 0;
z-index: 2;
}
/* Just to display it nicely: */
thead th {
background: #000;
color: #FFF;
/* Ensure this stays above the emulated border right in tbody th {}: */
z-index: 1;
}
tbody th {
background: #FFF;
border-right: 1px solid #CCC;
/* Browsers tend to drop borders on sticky elements, so we emulate the border-right using a box-shadow to ensure it stays: */
box-shadow: 1px 0 0 0 #ccc;
}
table {
border-collapse: collapse;
}
td,
th {
padding: 0.5em;
}
<div>
<table>
<thead>
<tr>
<th></th>
<th>headheadhead</th>
<th>headheadhead</th>
<th>headheadhead</th>
<th>headheadhead</th>
<th>headheadhead</th>
<th>headheadhead</th>
<th>headheadhead</th>
</tr>
</thead>
<tbody>
<tr>
<th>head</th>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
<tr>
<th>head</th>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
<tr>
<th>head</th>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
<tr>
<th>head</th>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
<tr>
<th>head</th>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
<tr>
<th>head</th>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
<td>body</td>
</tr>
</tbody>
</table>
</div>
https://jsfiddle.net/qwubvg9m/1/