Home>Article>Web Front-end> How to set css to exceed the display ellipses

How to set css to exceed the display ellipses

青灯夜游
青灯夜游 Original
2021-10-11 16:59:47 157152browse

How to set the ellipsis beyond the display in css: 1. Use the "overflow:hidden;" statement to hide the excess part; 2. Use the "text-overflow:ellipsis;" statement when the text overflows the containing element. Display ellipses to represent hidden parts.

How to set css to exceed the display ellipses

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

css settings that exceed the display of ellipsis can be divided into two situations

  • A single line of text overflows to display the ellipsis...

  • Multi-line text overflow displays ellipses...

But the core code used is the same: you need to use "overflow:hidden;" first to hide the excess part, and then use " text-overflow:ellipsis;" Displays as ellipsis when the text exceeds the limit.

  • overflow:hidden;Do not display content that exceeds the object size, that is, hide the excess part;

  • text-overflow:ellipsis;When the text object overflows, it is displayed..., of course, you can also set the property to clip to not display the dots;

Implementation code

1. Single-line text overflow displays ellipses...

     

css单行文本超出长度显示省略号

css单行文本超出长度显示省略号

Rendering:

How to set css to exceed the display ellipses

2. Multi-line text overflows and displays ellipses...

     
css多行文本超出长度显示省略号,css多行文本超出长度显示省略号, css多行文本超出长度显示省略号,css多行文本超出长度显示省略号。

How to set css to exceed the display ellipses

(Learning video sharing:css video tutorial)

The above is the detailed content of How to set css to exceed the display ellipses. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn