table表格的td行利用css显示...
默认超过指定长度以...显示, 鼠标放到文本上显示全
代码如下
.fh{
max-width:220px;
word-wrap:break-word;
text-overflow:ellipsis;
white-space:nowrap;
overflow:hidden;
}
.fh:hover {
white-space: normal;
overflow: auto;
}
class加上fh即可