css:
.box{
width: 100px;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
white-space: 不换行。强制在一行显示。
text-overflow: 处理溢出的文本: 以省略号代替。
1
css:
.box{
width: 100px;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
white-space: 不换行。强制在一行显示。
text-overflow: 处理溢出的文本: 以省略号代替。
1