table header css code example
Example 1: table fixed header
.tableFixHead thead th { position: sticky; top: 0; }
Example 2: table css
tr , th , td {
border: 1px solid black;
padding: 5%;
text-align: center;
}
.tableFixHead thead th { position: sticky; top: 0; }
tr , th , td {
border: 1px solid black;
padding: 5%;
text-align: center;
}