How to set ellipsis in css beyond part

coldplay.xixi
Release: 2021-04-15 16:50:20
Original
4846 people have browsed it

How to set ellipsis in the excess part of css: first create a new document; then define the [

How to set ellipsis in css beyond part

The operating environment of this tutorial: windows7 system, css3 version, DELL G3 computer.

How to set ellipsis in the excess part of css:

First, create a new HTML document to host CSS

How to set ellipsis in css beyond part

Save the above part and preview the effect in the browser. At this moment, the effect of CSS settings is not introduced.

How to set ellipsis in css beyond part

## is defined in the header of HTML tag, introduces an inline CSS style

How to set ellipsis in css beyond part

Define a piece of CSS for the h1 tag, used to set the display of ellipsis beyond the part, example:

h1{
            width: 300px;/*定义块元素的宽度*/
            white-space: nowrap;/*内容超宽后禁止换行显示*/
            overflow: hidden;/*超出部分隐藏*/
            text-overflow:ellipsis;/*文字超出部分以省略号显示*/
}
Copy after login

How to set ellipsis in css beyond part

Save the above file and preview the effect in the browser

How to set ellipsis in css beyond part

Related learning recommendations: css tutorial

The above is the detailed content of How to set ellipsis in css beyond part. 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
Popular Tutorials
More>
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!