核心提示:显示文本行超出部分省略号的方法:.text{width: 100%;overflow: hidden; // 超出的部分隐藏text-overflow: ellipsis; // 省略号white-s...
显示文本行超出部分省略号的方法:
.text{
width: 100%;
overflow: hidden; // 超出的部分隐藏
text-overflow: ellipsis; // 省略号
white-space: nowrap; // 控制文字不换行
}