增加樣式 style="word-break:break-all; word-wrap:break-all;"
這樣內容就會自動換行,表格就美觀多了。
<table class="table table-bordered table-hover table-striped" style="word-break:break-all; word-wrap:break-all;"> <thead> <tr> <th>變量名 <i class="fa fa-sort"></i></th> <th>值</th> </tr> </thead> <tbody> <#list systemPro.keySet() as key> <tr> <td style="width:150px;">${key}</td> <td>${systemPro.get(key)}</td> </tr> </#list> </tbody> </table>