A brief analysis of CSS3 using text-overflow to solve text layout problems

A brief analysis of CSS3 using text-overflow to solve text layout problems

Basic syntax
The use of text-overflow requires the use of three attributes: hight, over-flow:hidden; white-space:nowrap;

text-overflow: clip;ellipsis;string
Clip: Hide directly without displaying
ellipse: Use three dots to indicate overflowing text (commonly used)
string: You can customize symbols to represent characters that cannot be placed

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title></title>
	<style type="text/css">
		.tf{
			width: 100px;
			height:50px;
			border:1px solid black;
			overflow: hidden;
			text-overflow: clip;/*If you just want to hide the text, it doesn't matter whether you add this sentence or not. height+overflow can directly hide the overflowing text*/
		}
		.tf1{
			width: 100px;
			border:1px solid black;
			overflow: hidden;
			text-overflow: ellipsis;
			-webkit-text-overflow: ellipsis;
			white-space: nowrap;
			/*If using ellipsis attribute text-overflow:ellipsis; overflow: hidden;white-space: nowrap;
			 These three attributes are indispensable */
		}
	</style>
</head>
<body>
	<div class="tf">
		123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM.
	</div>

	<div class="tf1">
		123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM123WORDPRESS.COM.
	</div>

	
</body>
</html>

This concludes this article on a brief analysis of how CSS3 uses text-overflow to solve text typesetting problems. For more relevant CSS3 text typesetting content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  Combining XML and CSS styles

>>:  Solution to inconsistent display of cursor size in input box

Recommend

JDBC-idea import mysql to connect java jar package (mac)

Preface 1. This article uses MySQL 8.0 version Co...

JavaScript DOMContentLoaded event case study

DOMContentLoaded Event Literally, it fires after ...

How to use async and await correctly in JS loops

Table of contents Overview (Loop Mode - Common) D...

How to elegantly implement WeChat authorized login in Vue3 project

Table of contents Preface Prepare Implementation ...

JavaScript implementation of the Game of Life

Table of contents Concept Introduction Logical ru...

Detailed explanation of persistent storage of redis under docker

In this chapter, we will start to operate redis i...

Detailed explanation of custom configuration of docker official mysql image

In order to save installation time, I used the of...

How to hide elements on the Web and their advantages and disadvantages

Example source code: https://codepen.io/shadeed/p...

The difference and choice between datetime and timestamp in MySQL

Table of contents 1 Difference 1.1 Space Occupanc...

4 ways to implement routing transition effects in Vue

Vue router transitions are a quick and easy way t...

Detailed explanation of MySQL binlog usage

binlog is a binary log file that records all DML ...

Detailed explanation of ES6 Promise usage

Table of contents What is a Promise? Usage of rej...

js object to achieve data paging effect

This article example shares the specific code of ...

MySQL 8.0.18 installation and configuration method graphic tutorial (linux)

This article records the installation and configu...

MySQL data duplicate checking and deduplication implementation statements

There is a table user, and the fields are id, nic...