Basic syntax text-overflow: clip;ellipsis;string <!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
Preface 1. This article uses MySQL 8.0 version Co...
DOMContentLoaded Event Literally, it fires after ...
Table of contents Overview (Loop Mode - Common) D...
Table of contents Preface Prepare Implementation ...
Table of contents Concept Introduction Logical ru...
In this chapter, we will start to operate redis i...
In order to save installation time, I used the of...
Example source code: https://codepen.io/shadeed/p...
Table of contents 1 Difference 1.1 Space Occupanc...
Vue router transitions are a quick and easy way t...
binlog is a binary log file that records all DML ...
Table of contents What is a Promise? Usage of rej...
This article example shares the specific code of ...
This article records the installation and configu...
There is a table user, and the fields are id, nic...