溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

layui表格內(nèi)容溢出的解決方法

發(fā)布時間:2020-09-27 18:40:44 來源:腳本之家 閱讀:548 作者:逍遙游666 欄目:web開發(fā)

引言,我做文章管理的時候,引入的是layui的表格樣式,但是里面的內(nèi)容溢出無法隱藏,后來我采用了往td里面加了個<div></div>

然后設(shè)置一下樣式就可以了。


 <table class="layui-table">
 <colgroup>
 <col width="100">
 <col width="150">
 <col>
 </colgroup>
 <thead>
 <tr>
  <th>序號</th>
  <th>文章標(biāo)題</th>
  <th>文章內(nèi)容</th>
  <th>發(fā)布時間</th>
  <th>發(fā)布人</th>
  <th>操作</th>
 </tr> 
 </thead>
 <tbody>
 <c:forEach items="${pageInfo.list}" var="a">
 <tr >
  <td class="lid">${a.aId}</td>
  <td>${a.aTitle }</td>
  <td class="ac" ><div style="width:500px;
overflow:hidden; 
white-space:nowrap; 
text-overflow:ellipsis;">${a.aContent}</div></td>
  <td><fmt:formatDate type="both" dateStyle="long" timeStyle="long" value="${a.aTime}" /></td>
  <td>${a.whoRelease}</td> 
  <td>
  <button class="layui-btn-danger layui-btn layui-delete"><i class="layui-icon">&#xe640;</i></button></td> 
 </tr>
 </c:forEach>
 
 </tbody>
</table>

以上這篇layui表格內(nèi)容溢出的解決方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI