1
I would like to know how to freeze a row of an html table, for example
I would like to freeze the 1 row of the table, for when I descend the scroll it accompanies, could someone help me? I tried to use position Absolute, but it does not work in my case, because when I use the horizontal scroll they are fixed and do not accompany it.
Thinking quickly here, only if you split the table in two. The Header one and the part of the rows inside a DIV with scroll....
– Marcondes
Make your code available
– Bsalvo
I believe something like this: table tbody, table thead { display: block; } and this table tbody { overflow: auto; height: 100px; }
– Marcondes
Send your HTML to test here....
– Marcondes