CSS sets the content in the label label to exceed the custom width to display...

#list .li .label3{
    
      
	display: inline-block;/*一定要加这个,不然宽度会自适应内容长度*/
    text-overflow :ellipsis; /*让截断的文字显示为点点。还有一个值是clip意截断不显示点点*/
	white-space :nowrap; /*让文字不换行*/
	overflow : hidden; /*超出要隐藏*/
	width: 100px;
}

Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_46676903/article/details/113105442