在需实现该功能的元素中加如下CSS:
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
但如果是在table 的td中实现,则另需在table中加:
table{
table-layout: fixed;
}
本文介绍如何使用CSS属性如overflow、text-overflow和white-space来处理文本溢出,特别指出在table的td中实现这一效果时,还需设置table-layout为fixed。
在需实现该功能的元素中加如下CSS:
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
但如果是在table 的td中实现,则另需在table中加:
table{
table-layout: fixed;
}
1096
6098

被折叠的 条评论
为什么被折叠?