參考stackoverfolow
想要給元素添加text-overflow: ellipsis;
樣式,必須保證改其父元素是塊級元素,如果其是行級元素,可以通過設置display:block;
或者display:inline-block;
屬性
<html>
<body>
<style>
.container {
width: 120px;
}
.text {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
color:#b02b7c;
}
.color {
color: black;
}
</style>
<div class="container">
<div class="text">
<span class="color">Lorem</span> ipsum dolor sit amet, consetetur
</div>
</div>
</body>
</html>