内容简介:I useThis can be done quite easily in CSS thanks to the declaration
I use grammarly.com to correct the articles from this blog given that English's not my primary language. In this app, if you set a longer title a document you will get the ellipsis sign after a specific length.
This can be done quite easily in CSS thanks to the declaration text-overflow: ellipsis; .
Hoever keep in mind that for this to work you will also need to:
- set a clear width to the text so that there is a limit for how much the text can expand
- and also a nowrap alongside overflow: hidden so that the text will stay on one line and will not go outside the container
The full declaration for a truncation class may look like this:
.truncate-to-300 {
text-overflow: ellipsis;
width: 300px;
white-space: nowrap;
overflow: hidden;
}
And to get the output from the picture we can just to:
<h1>A CSS tricky situation- the order of the CSS class names in the HTML tags</h1>
There are also techniques that allow to truncate the text after multiple lines but there are a bit more troublesome to implement.
I hope you have enjoyed this article and if you would like to get more articles about React and frontend development you can always sign up for my email list.
以上所述就是小编给大家介绍的《Using Ellipsis to truncate long text lines in CSS》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Python金融大数据分析
[德] 伊夫·希尔皮斯科 / 姚军 / 人民邮电出版社 / 2015-12 / CNY 99.00
唯一一本详细讲解使用Python分析处理金融大数据的专业图书;金融应用开发领域从业人员必读。 Python凭借其简单、易读、可扩展性以及拥有巨大而活跃的科学计算社区,在需要分析、处理大量数据的金融行业得到了广泛而迅速的应用,并且成为该行业开发核心应用的首选编程语言。《Python金融大数据分析》提供了使用Python进行数据分析,以及开发相关应用程序的技巧和工具。 《Python金融大......一起来看看 《Python金融大数据分析》 这本书的介绍吧!