The HTML code for intercepting text beyond multiple lines is as follows: HTML: Copy code The code is as follows:<div class="sytm-text-1"> <p> 123WORDPRESS.COM Website: https://www.jb51.net </p> </div> <div class="sytm-text-2"> <p> 123WORDPRESS.COM Website: https://www.jb51.net </p> </div> CSS: Copy code The code is as follows:.sytm-text-1 { color: #FFF; background: #000; width: 410px; height: 22px; } .sytm-text-2 { color: #FFF; background: #000; width: 410px; height: 44px; } p { line-height: 22px; } JS (import jQuery): Copy code The code is as follows:$("div[class*='sytm-text']").each(function(e){ var divHeight = $(this).height(); var $p = $("p", $(this)).eq(0); while ($p.outerHeight() > divHeight) { $p.text($p.text().replace(/(\s)*([a-zA-Z0-9]+|\W)(\.\.\.)?$/, "...")); }; }); From the above code, we can find that the main principle of achieving this effect is to compare the height of the child container (p) with that of the parent container (div) and perform character interception according to the regular expression until the two are equal. Therefore, the key to controlling the number of intercepted lines naturally lies in the div height. |
<<: PNG Alpha Transparency in IE6 (Complete Collection)
>>: Detailed explanation of CSS float property
Use the Linux utility certbot to generate https c...
1.vue packaging Here we use the vue native packag...
This article example shares the specific code of ...
In today's development environment, fast is b...
Effect: When the slideshow moves in one direction...
Table of contents What is cgroup Composition of c...
On many websites, we have seen the input box disp...
Omit the protocol of the resource file It is reco...
MySQL master-slave setup MySQL master-slave repli...
When writing HTML code, the first line should be ...
1. Create insert into [table name] (field1, field...
Given an array [1,8,5,4,3,9,2], write an algorith...
Table of contents Vue.js 1. Register global guard...
About JS, CSS CSS: Stylesheet at the top Avoid CS...
Docker Compose Introduction to Compose Compose is...