Html long text automatically cuts off when it exceeds the tag width

Html long text automatically cuts off when it exceeds the tag width
When we display long text, we often need to intercept characters on the C# side, but this is definitely not a good thing, because our long text is often represented by HTML tags. If you don't load it properly, garbled characters will appear (half of the HTML tag will appear). A better way is to implement this function through CSS.
When the span tag exceeds the limit, it will automatically wrap the content.

Copy code
The code is as follows:

white-space:nowrap;white-space:norma;display:inline-block;

If the line exceeds the auto-hidden area, it will not be displayed in a row (must be in a block element)

Copy code
The code is as follows:

overflow:hidden;white-space:nowrap;

If you want to add a ... after the text, you can use text-overflow: ellipsis; most mainstream browsers support this attribute

Copy code
The code is as follows:

.tbconxx {
float: left;
width: 255px;
padding: 5px 10px;
}
.tbconxx li,tbconxx span {
padding-left: 7px;
text-overflow: ellipsis;
overflow: hidden;
display: block;
white-space: nowrap;
width: 240px;
}

This will automatically hide the text that exceeds the limit.

<<:  Simplify complex website navigation

>>:  Introduction and architecture of Apache Arrow, a high-performance data format library package on JVM (Gkatziouras)

Recommend

Summary of MySQL's commonly used database and table sharding solutions

Table of contents 1. Database bottleneck 2. Sub-l...

CSS to achieve scrolling image bar example code

On some websites, you can often see some pictures...

Use javascript to create dynamic QQ registration page

Table of contents 1. Introduction 1. Basic layout...

Why Seconds_Behind_Master is still 0 when MySQL synchronization delay occurs

Table of contents Problem Description Principle A...

Detailed explanation of query examples within subqueries in MySql

Where is my hometown when I look northwest? How m...

Optimizing the slow query of MySQL aggregate statistics data

Written in front When we operate the database in ...

HTTP return code list (Chinese and English explanation)

http return code list (below is an overview) for ...

How to keep running after exiting Docker container

Phenomenon: Run an image, for example, ubuntu14.0...

CSS3 flexible box flex to achieve three-column layout

As the title says: The height is known, the width...

Vue implements chat interface

This article example shares the specific code of ...

MySql 5.7.21 free installation version configuration method under win10

1. Unzip to the location where you want to instal...

Summary of Button's four Click response methods

Button is used quite a lot. Here I have sorted ou...

Native JS to achieve drag photo wall

This article shares with you a draggable photo wa...

A very detailed explanation of Linux C++ multi-thread synchronization

Table of contents 1. Mutex 1. Initialization of m...