Answers for "table fixed horizontal scrollbar"

1

html table scrollable body fixed header

/*Simply*/  position:sticky; top: 0; /*your th elements*/
Posted by: Guest on January-26-2021
0

table scroll horizontal

<div style="overflow-x:auto;">
  <table>
    ...
</table>
</div>
Posted by: Guest on August-07-2021
0

table scroll horizontal

// if you use DataTable
$(document).ready(function() {
    $('#example').DataTable( {
        "scrollX": true
    } );
} );
Posted by: Guest on August-07-2021

Code answers related to "table fixed horizontal scrollbar"

Browse Popular Code Answers by Language