Method 1: Use CSS overflow omission to solve The solution is as follows: CSS code: display: -webkit-box; display: -moz-box; white-space: pre-wrap; word-wrap: break-word; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; -webkit-line-clamp:2; /*Display number of lines*/ Method 2: Use jQuery to intercept and replace text content The solution is as follows: js code: $(".text").each(function() { if ($(this).text().length > 20) {//Requires the number of words to be greater than 20 before replacing the number of words$(this).html($(this).text().replace(/\s+/g, "").substr(0, 80) + "...") //Start replacing from 0 to 80, and replace the remaining text content with "..." } }) The above two methods can be applied to the class name of the text content. Summarize The above are two common solutions to the problem of ellipsis characters displayed when HTML text overflows. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! |
<<: MySQL database JDBC programming (Java connects to MySQL)
>>: What is JavaScript anti-shake and throttling
1. Environmental Preparation The IP address of ea...
Use wget command to download the entire subdirect...
1. Use the <nobr> tag to achieve no line bre...
js interesting countdown case, for your reference...
Includes the process of initializing the root use...
1. Download the mysql-5.7.17-winx64.zip installat...
Problem Description After installing Qt5.15.0, an...
1. Percentage basis for element width/height/padd...
If you want to become a Linux master, then master...
Beginners can learn HTML by understanding some HT...
Today I installed the MySQL database on my comput...
First and foremost, I am a web designer. To be mor...
Introducing Server-U software Server-U is a very ...
Table of contents Spring Boot Docker spring-boot-...
When I was working on a project recently, I found...