본문 바로가기
javascript

[dataTables.js] overflow-x scroll

by 바나냥 2020. 5. 6.
.overflow-x-auto .table {width: auto!important; table-layout: fixed; white-space: nowrap;}
.overflow-x-auto .table td {min-width: 80px;}​
$(document).ready(function() {
    $('#example').DataTable( {
        "scrollX": true
    } );
} );

댓글