Answers for "make horizontal and vertical scrollable table"

0

scrollable table vertical

thead, tbody { display: block; }

tbody {
    height: 100px;       /* Just for the demo          */
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
}
Posted by: Guest on November-23-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 "make horizontal and vertical scrollable table"

Code answers related to "Javascript"

Browse Popular Code Answers by Language