(多行文本溢出显示省略号)text-overflow: ellipsis;
四个限制条件:
.goods_name{
/*固定宽度*/
width: 5rem;
/*超出隐藏*/
overflow: hidden;
/*禁止换行*/
white-space: nowrap;
/*超出用省略号代替*/
text-overflow: ellipsis;
}
a标签内容超出以后隐藏并且显示省略点:
https://www.cdsy.xyz/computer/programme/html_div_css/241209/cd64880.html

