How to implement css style beyond hiding

藏色散人
Release: 2023-01-07 11:42:45
Original
6974 people have browsed it

How to implement beyond hiding using css style: First create an HTML sample file; then set the text beyond hiding effect through "overflow: hidden;text-overflow: ellipsis;".

How to implement css style beyond hiding

The operating environment of this article: windows7 system, HTML5&&CSS3 version, DELL G3 computer

#How to achieve beyond hiding in css style?

css style beyond part ellipses

width: 30px; overflow: hidden; //隐藏 white-space: nowrap; //不换行 text-overflow: ellipsis; //超出部分省略号
Copy after login

Definition and Usage:
The white-space attribute sets how to handle whitespace within the element.
Possible values:

Value Description
normal By default, blank spaces will be ignored by the browser
pre Blank spaces will be retained by the browser. It behaves like the pre tag in HTML
nowrap The text does not wrap, the text continues on the same line until the
tag is encountered
pre-wrap Keep whitespace sequences, but wrap normally
inherit Specifies that should Inherit the value of the white-space attribute from the parent element

The text-overflow attribute specifies what happens when text overflows the containing element.

##clip Default, Trim text ellipsis Show ellipsis to represent omitted text string Applies to the given String to represent the trimmed text
Value Description
## Recommended learning: " css video Tutorial

The above is the detailed content of How to implement css style beyond hiding. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!