html中:
<div class="two-line-string">
<span>这里写文字</span>
</div>
css中:
.two-line-string {
width: 240px;
height: 48px;
padding-right: 20px;
line-height: 24px;
// ------核心代码------
display: flex;
flex-direction: row;
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-align: left;
justify-content: center;
// ------核心代码------
}
网友评论