Answers for "fixed table header row"

CSS
6

table fixed header

.tableFixHead thead th { position: sticky; top: 0; }
Posted by: Guest on July-12-2020
0

table fixed header

.tableFixHead          { overflow: auto; height: 100px; }
.tableFixHead thead th { position: sticky; top: 0; z-index: 1; }

/* Just common table stuff. Really. */
table  { border-collapse: collapse; width: 100%; }
th, td { padding: 8px 16px; }
th     { background:#eee; }
Posted by: Guest on May-19-2021

Browse Popular Code Answers by Language