interview-answe
interview-answe copied to clipboard
158.[CSS]css文本过长显示省略号
[CSS]
<style scoped>
.text {
width: 55px;
-webkit-line-clamp: 1;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
word-break: break-word;
}
</style>