close
解決dataTable欄位太多導致超出頁面寬度的方法:
自訂table CSS如下
table{
margin: 0 auto;
width: 100%;
clear: both;
border-collapse: collapse;
table-layout: fixed; // ***********add this
word-wrap:break-word; // ***********and this
}
--
參考自 https://stackoverflow.com/questions/56813802/fixed-column-width
全站熱搜
留言列表