1. Single row overflow 1. If a single line overflows, the excess part will be displayed...or intercepted. The premise must be width. width:300px; overflow: hidden; text-overflow:ellipsis; whitewhite-space: nowrap; The effect is as shown below: 2. Multi-line overflow {display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical;} display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; The effect is as shown below: Since WebKit's CSS extended properties are used, this method is applicable to WebKit browsers and mobile devices; Implementation method: p{position: relative; line-height: 20px; max-height: 40px; overflow: hidden;} p::after{content: "..."; position: absolute; bottombottom: 0; rightright: 0; padding-left: 40px; background: -webkit-linear-gradient(left, transparent, #fff 55%); background: -o-linear-gradient(rightright, transparent, #fff 55%); background: -moz-linear-gradient(rightright, transparent, #fff 55%); background: linear-gradient(to rightright, transparent, #fff 55%); } Scope of application: Note: 1. Set the height to an integer multiple of the line-height to prevent the text that exceeds the height from being exposed. 123WORDPRESS.COM editor adds: IE-based browsers must define line-height and height, and -webkit-line-clamp means a few lines, for example
-webkit-line-clamp -webkit-line-clamp is an unsupported WebKit property that does not appear in the CSS draft specification. |
<<: CSS scroll-snap scroll event stop and element position detection implementation
>>: HTML Marquee character fragment scrolling
Table of contents Three steps to operate the data...
Disabling and enabling MySQL foreign key constrai...
[LeetCode] 181.Employees Earning More Than Their ...
MySQL supports nested transactions, but not many ...
Table of contents 1. Routing animation 2. Group Q...
yum command Yum (full name Yellow dog Updater, Mo...
Calculation of the box model <br />Margin + ...
A few days ago, when I was adjusting a module of a...
Mysql query time period intersection Usage scenar...
I installed MySQL smoothly in Ubuntu 16.04 before...
1. readonly read-only attribute, so you can get th...
border-radius: CSS3 rounded corners Syntax: borde...
When making web pages, you often encounter the pr...
Introduction In the previous article, we installe...
Table of contents Basic Overview Enable GTID onli...