14.01.2023, 18:07
Hallo,
hier meine Tabelle : https://oesoft.de
die Spalten der Überschrift (position:fixed
) bedecken die erste Zeile der Tabelle
hier meine Tabelle : https://oesoft.de
die Spalten der Überschrift (position:fixed
) bedecken die erste Zeile der Tabelle
Code:
<div class="container_table">
<h5 class="ueberschrift_table"> TABELLE | OHNE FILTER </h5>
<div class="container_scroll" id="table">
<table>
<thead>
<tr>
<th class="zustaendigkeit"></th>
<th class="schnittstelle"></th>
<th class="uhrzeit">UHRZEIT</th>
<th class="kennung">KENNUNG</th>
<th class="sub"></th>
<th>TAKTISCHE EINHEIT</th>
<th>STANDORT</th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody class="display_table" id="jstable_test">
</tbody>
</table>
</div>
</div>
Code:
th {
border: 1px solid Gray;
background-color: #F2F2F2;
font-family: system-ui;
font-weight: 100;
padding: 5px;
}
td {
border: 1px solid Gray;
text-align: left;
padding: 3px;
}
thead {
color: gray;
position:fixed;
margin-top: 0px;
}
.display_table {
display: block;
}