`
javaEEdevelop
  • 浏览: 865405 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论

4行CSS实现表格内容超过一行的部分,用省略号代替(转载)

 
阅读更多
Html代码  收藏代码
  1. table{  
  2.   
  3.   table-layout: fixed;  
  4.   
  5. }  
  6.   
  7. td{  
  8.   
  9.   white-space: nowrap;  
  10.   overflow: hidden;  
  11.   text-overflow: ellipsis;  
  12.   
  13. }  

 

原理:

本方法用于解决表格单元格内容过多时的美观问题,主要涉及到4句CSS样式:

1. table-layout: fixed 由于table-layout的默认值是auto,即table的宽高将取决于其内容的多寡,如果内容的体积无法估测,那么最终表格的呈现形式也无法保证了,fixed一下就好了。(注意:此样式是关键)

2. white-space: nowrap 是为了保证无论单元格(TD)中文本内容有多少,都不会自动换行,此时多余的内容会在水平方向撑破单元格。

3. overflow: hidden 隐藏超出单元格的部分。

4. text-overflow: ellipsis 将被隐藏的那部分用省略号代替。

 


效果图:

源代码:

Html代码  收藏代码
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4.   
  5.     <style type="text/css">  
  6.         table  
  7.         {  
  8.             table-layout: fixed;  
  9.             width: 100%;  
  10.         }  
  11.           
  12.         td  
  13.         {  
  14.             white-space: nowrap;  
  15.             overflow: hidden;  
  16.             text-overflow: ellipsis;  
  17.             background-color: #ccc;  
  18.         }  
  19.     </style>  
  20.   
  21. </head>  
  22. <body>  
  23.     <table>  
  24.         <thead>  
  25.             <th>  
  26.                 第一列  
  27.             </th>  
  28.             <th>  
  29.                 第二列  
  30.             </th>  
  31.         </thead>  
  32.         <tbody>  
  33.             <tr>  
  34.                 <td>  
  35.                     <span>超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容 超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容</span><span>超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容 超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容</span>  
  36.                 </td>  
  37.                 <td>  
  38.                     超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容超长内容  
  39.                 </td>  
  40.             </tr>  
  41.         </tbody>  
  42.     </table>  
  43. </body>  
  44. </html>  

 

        兼容性:http://www.php100.com/manual/css3_0/text-overflow.shtml

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics