在第一个换行符之后隐藏文本? (不是
,而是由浏览器封装)

发布于 2024-11-29 10:41:31 字数 231 浏览 1 评论 0原文

是否有可能知道文本在哪里被分割并开始新行并隐藏第一行之后的所有内容,无论是使用 css 还是使用 js?

因此,如果我在浏览器中显示以下文本,

 aaa aaa aaa aaa 
 bbb bbb bbb bbb

则仅应显示第一行。

请注意,第二行的开始是因为 div 容器的宽度,而不是因为使用
或类似的内容。

Is it somehow possible to know where the text is split and a new line is started and hide everything after the first line, either with css or with js?

So if I have the following text displayed in the browser

 aaa aaa aaa aaa 
 bbb bbb bbb bbb

Only the first line should be displayed.

Note that the second line is started because of the width of the div container, not because of using <br /> or similar.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

找个人就嫁了吧 2024-12-06 10:41:31

您可以使用 CSS 来做到这一点。

#content {
    height: 1em;
    overflow: hidden;
}

请参阅 jsFiddle 上的示例。

You can do this with CSS.

#content {
    height: 1em;
    overflow: hidden;
}

See example on jsFiddle.

时常饿 2024-12-06 10:41:31

http://sandbox.phpcode.eu/g/92073.php

<div style="line-height:15px;height:16px;overflow:hidden;"> 
 aaa aaa aaa aaa <br /> 
 bbb bbb bbb bbb 
</div> 

http://sandbox.phpcode.eu/g/92073.php

<div style="line-height:15px;height:16px;overflow:hidden;"> 
 aaa aaa aaa aaa <br /> 
 bbb bbb bbb bbb 
</div> 
浮世清欢 2024-12-06 10:41:31

@Peter 的答案的变化:

#content .wrapper-for-text {
  display:inline-block;
  height:1em;
  overflow-hidden;
}

工作示例,包括包装器上的填充,此处: http://jsfiddle.net/MED62 /4/

Variation on @Peter's answer:

#content .wrapper-for-text {
  display:inline-block;
  height:1em;
  overflow-hidden;
}

Working example, including padding on the wrapper, here: http://jsfiddle.net/MED62/4/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文