Detailed explanation of common usage of pseudo-classes before and after in CSS3

Detailed explanation of common usage of pseudo-classes before and after in CSS3

The before/after pseudo-class is equivalent to inserting two additional tags inside an element. Its most suitable and recommended application is graphic generation. In some sophisticated UI implementations, HTML code can be simplified to improve readability and maintainability. These two pseudo-class applications are quite popular and prosperous abroad, but it seems that our front-end developers generally lack the awareness of using these two pseudo-classes. If they want to use them, the most they do is to follow the trend of "clear floating" application.

1. Basic usage

The function of :before and :after is to insert an inline element containing the content specified by the content attribute before or after the specified element content (not the element itself). The most basic usage is as follows:

#example:before {
    content: "#";
    color: red;
}
 
#example:after {
    content: "$";
    color: red;
}

Both pseudo-classes belong to inline elements, but they can be converted into block elements using the display:block attribute. The more common usage is to implement some styles and clear the floating effect. .

2. Style modification

The code is as follows:

<div class="quote">
    <span>Small apartment</span>
</div>
.quote:before,.quote:after{//Use these two pseudo-classes to implement style rendering content:"";
     display:inline-block;
     width:5%;
     margin:5px 1%;
     border-bottom:1px solid blue;
}

The effect is shown in the following figure:

Write the picture description here

3. Clear floats

The code looks like this:

<div class="parent">
    <div class="box1"></div>
    <div class="box2"></div>
</div>
<div class="parent2">parent2</div>
//css code.box1{
     width:300px;
     height:200px;
     background-color: lightgray;
     float:left;
}
.box2{
     width:300px;
     height:100px;
     background-color: lightblue;
     float:left;
}
.parent2{
     width:400px;
     height: 400px;
     background-color:blue;
     color:#fff;
     text-align:center;
     line-height:400px;
     font-size:30px;
}

Because of the floating problem, the implementation effect is as follows:

Write the picture description here

If you add this code to the above code to clear the float, you will achieve a different effect:

.parent:after{
     content:"";
     display:block; //Set to block element clear:both; //Use this property to clear floats}

The effect achieved is shown in the figure below:

Write the picture description here

This is the end of this article about the common uses of the before and after pseudo-classes in CSS3. For more relevant CSS3 pseudo-classes before and after, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Introduction to fork in multithreading under Linux

>>:  Summary of the knowledge of embedding instructions that Vue engineers must encapsulate

Recommend

Two ways to configure Vue global methods

Table of contents 1. Introduction 2. The first me...

Three.js sample code for implementing dewdrop animation effect

Preface Hello everyone, this is the CSS wizard - ...

Does Mysql ALTER TABLE lock the table when adding fields?

Table of contents Before MySQL 5.6 After MySQL 5....

Using CSS3 to implement font color gradient

When using Animation.css, I found that the font o...

Detailed explanation of using split command to split Linux files

A few simple Linux commands let you split and rea...

MySql multi-condition query statement with OR keyword

The previous article introduced the MySql multi-c...

WeChat applet realizes the effect of shaking the sieve

This article shares the specific code of the WeCh...

Advantages and disadvantages of Table layout and why it is not recommended

Disadvantages of Tables 1. Table takes up more byt...

Example of how to configure cross-domain failure repair in nginx

Nginx cross-domain configuration does not take ef...

MySQL foreign key constraint (FOREIGN KEY) case explanation

MySQL foreign key constraint (FOREIGN KEY) is a s...

Detailed explanation of Linux less command examples

less file name View File less file name | grep -n...

Solution to forgetting the administrator password of mysql database

1. Enter the command mysqld --skip-grant-tables (...

MySql 8.0.16-win64 Installation Tutorial

1. Unzip the downloaded file as shown below . 2. ...

HTML fixed title column, title header table specific implementation code

Copy code The code is as follows: <!DOCTYPE ht...