Two common solutions to html text overflow display ellipsis characters

Two common solutions to html text overflow display ellipsis characters

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

Recommend

Implementation of LNMP for separate deployment of Docker containers

1. Environmental Preparation The IP address of ea...

wget downloads the entire website (whole subdirectory) or a specific directory

Use wget command to download the entire subdirect...

js to achieve interesting countdown effect

js interesting countdown case, for your reference...

Windows platform configuration 5.7 version + MySQL database service

Includes the process of initializing the root use...

Detailed explanation of MySql 5.7.17 free installation configuration tutorial

1. Download the mysql-5.7.17-winx64.zip installat...

4 Ways to Quickly Teach Yourself Linux Commands

If you want to become a Linux master, then master...

Beginners learn some HTML tags (2)

Beginners can learn HTML by understanding some HT...

MySQL 5.7.17 winx64 installation and configuration tutorial

Today I installed the MySQL database on my comput...

Why is IE6 used by the most people?

First and foremost, I am a web designer. To be mor...

How to install and use Server-U 14 version

Introducing Server-U software Server-U is a very ...

Summary of Spring Boot Docker packaging tools

Table of contents Spring Boot Docker spring-boot-...

CSS3+HTML5+JS realizes the shrinking and expanding animation effect of a block

When I was working on a project recently, I found...