I am trying to get a fixed table header for thead without using Javascript. Here is the basic setup of my table:
<table>
<thead>
<tr>
<th>...</th>
<th>...</th>
<th>...</th>
<tr>
</thead>
<tbody>
...
</tbody>
</table>
I tried using css but no luck of achieving it. I got a fixed header but the width of it is small and it's not adjustable.
.thead {
position:fixed;
top:0;
width:100%;
}