thinkphp5: 循環輸出表格,並固定表格單元寬度(過長省略號)

html:

<table class="table table-striped" style='table-layout:fixed;'>
                  <thead class="table_head"> <tr> <th><input type="checkbox"></th> <th>編號</th> <th>標題</th> <th>類別</th> <th>時間</th> <th>內容</th> <th>觀看次數</th> <th>發佈人</th> <th>操做</th> </tr> </thead> <tbody> {volist name="blogs" id='vo'} <tr> <td><input type="checkbox"></td> <td>{$vo.blog_id}</td> <td>{$vo.title}</td> <td>{$vo.class}</td> <td>{$vo.time}</td> <td>{$vo.content}</td> <td>{$vo.watch_num}</td> <td>{$vo.owner}</td> <td><a>刪除</a></td> </tr> {/volist} </tbody> </table>

 css:css

.table tbody tr td{
      overflow: hidden; 
      text-overflow:ellipsis;  
      white-space: nowrap; 
 }
相關文章
相關標籤/搜索