内容简介: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》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
两周自制脚本语言
[日]千叶 滋 / 陈筱烟 / 人民邮电出版社 / 2014-6 / 59.00元
《两周自制脚本语言》是一本优秀的编译原理入门读物。全书穿插了大量轻松风趣的对话,读者可以随书中的人物一起从最简单的语言解释器开始,逐步添加新功能,最终完成一个支持函数、数组、对象等高级功能的语言编译器。本书与众不同的实现方式不仅大幅简化了语言处理器的复杂度,还有助于拓展读者的视野。 《两周自制脚本语言》适合对编译原理及语言处理器设计有兴趣的读者以及正在学习相关课程的大中专院校学生。同时,已经......一起来看看 《两周自制脚本语言》 这本书的介绍吧!