通过css伪属性给div加小图标
不换行,同时变。。。
.freak{
width: 100px;
height: 100px;
background-color: pink;
position: relative;
text-overflow: ellipsis;
white-space:nowrap;
overflow:hidden;
}
.freak:after{
content:"";
width: 10px;
height: 10px;
background-color: red;
display: block;
position: absolute;
bottom: 0;
right: 0;
}
<div class="freak">
我附近的看法健身房开始了尖峰时刻老骥伏枥帅酷减肥
</div>