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
1.1 What is MySQL multi-instance? Simply put, MyS...
This article example shares the specific code of ...
Table of contents APIs used Simple Example person...
Allow './' relative paths in docker-compo...
I was woken up by a phone call early in the morni...
I updated MySQL 8.0 today. The first problem: Nav...
Seamless carousel is a very common effect, and it...
1. Why set maxPostSize? The tomcat container has ...
Preface For production VPS with public IP, only t...
Table of contents 1. Use JavaScript to parse the ...
I have also been researching MySQL performance op...
Anaconda Installation Anaconda is a software pack...
Technical Background Latex is an indispensable to...
When we make a web page, sometimes we want to hav...
Get the current date + time (date + time) functio...