内容简介: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》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Servlet与JSP核心编程
[美]Marty Hall、Larry Brown、Yaakov Chalkin / 胡书敏 / 2009-6 / 68.00元
《Servlet与JSP核心编程(第2卷 第2版)》在第l卷的基础上,广泛涉及自定义标签库、过滤器、声明式安全、JSTL和Struts等主题,并沿袭深受读者喜爱的写作风格,通过完整、有效、资料丰富的程序来演绎目前最流行的技术和最佳实践。Java EE已经成为电子商务网站、动态网站和Web应用与服务开发的首选,作为这一平台的基础,servlet与JSP的重要性日益突出,并在极短的时间内得以迅速普及。......一起来看看 《Servlet与JSP核心编程》 这本书的介绍吧!