Answers for "responsive horizontal scroll table"

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 "responsive horizontal scroll table"

Browse Popular Code Answers by Language