Detailed explanation of the use of pseudo-elements::before and ::after

php中世界最好的语言
Release: 2018-03-21 10:40:26
Original
4348 people have browsed it

This time I will bring you a detailed explanation of the use of pseudo elements::before and ::after. What are theprecautions for using pseudo elements::before and ::after. The following is a practical case. Let’s take a look. take a look.

Preface

It is well known that the two pseudo-elements::before and ::after are actually the content in CSS3, but in fact in CSS2 There are already these two, but in CSS2 they are represented by a colon in front (:before and :after). Today I will mainly talk about how to use these two pseudo elements.

1. You can add styles to ordinary elements just like ordinary elements.

For example, if I want to add an icon in front of the text, if I use ordinary When writing elements, I can write like this:

/*CSS*/ .del{ font-size: 20px;} .del i{ display: inline-block; width: 20px; height: 25px; margin-right: 2px; vertical-align: middle; background: url("imgs/delete.png") no-repeat center; background-size: 100%;} .del span{ vertical-align: middle;}
Copy after login
/*HTML*/ 

删除

Copy after login
But it always feels uncomfortable to put an empty i tag, so just remove it!

/*CSS*/ .del{ font-size: 20px;} .del::before{ content: ""; display: inline-block; width: 20px; height: 25px; margin-right: 2px; vertical-align: middle; background: url("imgs/delete.png") no-repeat center; background-size: 100%;} .del span{ vertical-align: middle;}
Copy after login
/*HTML*/ 

删除

Copy after login
Here we directly use the ::before pseudo-element to replace the empty i tag. The two have the same effect:

We can also use this point. Use the ::after pseudo-element to solve the classic

clear floatproblem:

.clearfix::after{ display:block; clear:both; content:""; overflow:hidden; height: 0; }

Of course, if your website still needs to be compatible with IE8, then use :after, ::after is not compatible.

2. Insert text into elements

Sometimes I may need to add the same text to many elements at the same time, then you can consider using These two pseudo elements. For example:

/*CSS*/ .up:after{ content: '↑'; color: #f00;} .down:after{ content: '↓'; color: #0f0;}
Copy after login
/*HTML*/ 

上升

下降

Copy after login
The effect is as follows:

##3. Insert the image into the elementTo achieve a picture plus text effect similar to the first example in this article, you can also use pseudo elements to directly insert pictures without using a background image, like this:

/*CSS*/ .del{ font-size: 20px;} .del::before{ content: url("imgs/delete.png"); display: inline-block; margin-right: 2px; vertical-align: middle; } .del span{ vertical-align: middle;}
Copy after login

But you need to be very careful, Images inserted in this way cannot change the size of the image by controlling the size of the pseudo-element. They can only introduce images of a fixed size (this is a bit confusing...), so I personally think it is best to compare the background image honestly and practically. good.

4. Insert consecutive project numbersMaybe you will say, isn’t it easy to add consecutive project numbers? Just use an ordered list directly!

Yes, it is indeed possible, just like this:

我的爱好:

  1. 吃饭
  2. 睡觉
  3. 打豆豆
Copy after login

This is the effect under Chrome:

Looks pretty good , no problem, what if I want to bold the previous serial number? I'm confused...

Now you say, can't I just manually add labels and numbers before each text, and then add styles to the labels?

/*CSS*/ ul li{ list-style: none;} ul li span{ font-weight: bold;}
Copy after login
/*HTML*/ 

我的爱好:

  • 1.吃饭
  • 2.睡觉
  • 3.打豆豆
Copy after login

Yes, there are three items now. What if there are thirty items or three hundred items? Add them one by one? (Very silly and naive...)

If you use pure CSS at this time, you have to use pseudo elements:

/*CSS*/ ul li{ list-style: none; counter-increment: number;} //number相当于是个变量,随便取名就好,在伪元素中调用 ul li::before{ content: counter(number)"."; font-weight: bold;} //注意这里不同于JS,counter(number)与"."之间不需要加任何东西,直接连接就好
Copy after login
/*HTML*/ 

我的爱好:

  • 吃饭
  • 睡觉
  • 打豆豆
Copy after login

The effect is as follows:

So if I don’t want Arabic numerals, can I just use Chinese numerals?

Can! Pseudo elements are nice and powerful!

ul li{ list-style: none; counter-increment: number;} ul li::before{ content: counter(number,cjk-ideographic)"、"; font-weight: bold;}
Copy after login

The effect is as follows:

##In addition to this cjk-ideographic, you can also use more CSSlist-style-type

Attributes: (Directly paste the table in w3cshool)

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

CSS3 makes a large striped background

CSS3 dynamic prompt effect when the mouse moves into the picture

How to use sticker-footer layout in css

The above is the detailed content of Detailed explanation of the use of pseudo-elements::before and ::after. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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!