css: 文字单行显示超出省略
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
附加文字两端对齐
span {
text-align: justify;
width: 4rem;
&:after {
content: " ";
display: inline-block;
padding-left: 100%;
}
}
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
span {
text-align: justify;
width: 4rem;
&:after {
content: " ";
display: inline-block;
padding-left: 100%;
}
}