//单行文本溢出解决方案:
p {
white-space:nowrap;
text-overflow:ellipsis;
overflow: hidden;
width: 210px;
//一定要给宽度
}
//多行文本解决方案(只有
2019-05-14