当前位置: 代码迷 >> Web前端 >> 报表内容过长省略号代替
  详细解决方案

报表内容过长省略号代替

热度:187   发布时间:2013-03-17 13:48:31.0
表格内容过长省略号代替

?

<html>  
<head>  
 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
<style type="text/css">  
table{
table-layout: fixed
}  
td {
text-overflow:ellipsis;
overflow: hidden;
}  
span {
display:block;  
overflow:hidden;  
white-space:nowrap;  
text-overflow:ellipsis;
}  
</style>  
</head>  
<body>  
<table border="1" width="300px" >  
<tr >  
<td>fffffffffffffffffff!</td>  
<td title="">cccccccccccccc</td>      
<td><span title="aa">1233333333123333333312333333333</span></td>  
<td>1233333333123333333312333333333</td>  
<td>1233333333123333333312333333333</td>  
</tr>  
</table>  
<body>  
</html>  

?

?

参数:

clip :  不显示省略标记(...),而是简单的裁切

ellipsis :  当对象内文本溢出时显示省略标记(...)

说明:

设置或检索是否使用一个省略标记(...)标示对象内文本的溢出。

?

  相关解决方案