I have a table here. I want to fixed the first 3 rows (from 'learners name' to 'highest possible score') when I scroll down. and also to fixed the first column (leaders name,highest possible score, including the (male,numbers,and name)) when I scroll right.
I tried to add this to the css
table tbody, table thead{
display: block;
}
table tbody{
overflow: auto;
height: 100px;
}
table {
width: 350px; /* can be dynamic */
}
th {
width: 75px;
}
it fixed the column but the table crashed.