在第一个换行符之后隐藏文本? (不是
,而是由浏览器封装)
是否有可能知道文本在哪里被分割并开始新行并隐藏第一行之后的所有内容,无论是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 CSS 来做到这一点。
请参阅 jsFiddle 上的示例。
You can do this with CSS.
See example on jsFiddle.
http://sandbox.phpcode.eu/g/92073.php
http://sandbox.phpcode.eu/g/92073.php
@Peter 的答案的变化:
工作示例,包括包装器上的填充,此处: http://jsfiddle.net/MED62 /4/
Variation on @Peter's answer:
Working example, including padding on the wrapper, here: http://jsfiddle.net/MED62/4/