gpt4 book ai didi

html - 如何使用 CSS3 只显示 3 行

转载 作者:行者123 更新时间:2023-11-28 07:32:33 25 4
gpt4 key购买 nike

我添加了将文本截断为 3 行的 CSS,但截断后,它会在 3 个点后重复标题。这是快照。

enter image description here

HTML

<p class="ccm-page-list-title">
<a href="/concrete5">Weight Plate Barbell Racking Calculator Imperial Units (Pounds) Weight Plate Barbell</a>

CSS

p.ccm-page-list-title {
-webkit-line-clamp: 3;
position: relative;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
height: 90px;
font-size: 16px;
font-weight: 400;
line-height: 22px;
padding-top: 5px;
}

Link of Page

最佳答案

在css中添加段落的高度属性

p.ccm-page-list-title {
-webkit-line-clamp: 3;
position: relative;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;

font-size: 16px;
font-weight: 400;
line-height: 22px;
padding-top: 5px;

height:48px;
}

关于html - 如何使用 CSS3 只显示 3 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31426400/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com