【发布时间】:2021-09-10 14:18:58
【问题描述】:
我希望此描述文本的第二行有 text-overflow: ellipsis。但似乎我的代码不起作用。
<div class="container">
<span
>Test test test testTest test test testTest test test testTest test test
testTest test test testTest test test testTest test test test</span
>
</div>
和 css 部分(注意:在这种情况下需要相对定位的容器)
.container {
position: relative;
width: 320px;
height: 220px;
background-image: url("https://terrigen-cdn-dev.marvel.com/content/prod/1x/popsicle_heroesscreenshot_legal.jpg");
}
span {
position: absolute;
color: white;
bottom: 32px;
left: 8px;
overflow: hidden;
line-clamp: 2;
text-overflow: ellipsis;
}
【问题讨论】: