Home > Web Front-end > CSS Tutorial > How to use after and before selectors? Detailed explanation of after and before selectors

How to use after and before selectors? Detailed explanation of after and before selectors

云罗郡主
Release: 2018-11-21 17:23:17
forward
4456 people have browsed it

The content of this article is about how to use after and before selectors? The detailed explanation of after and before selectors has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

In CSS3, we can use the ::before and ::after selectors to add content before or after the element. These two selectors are often used in conjunction with the "content attribute". The most commonly used scenarios are clearing floats and creating small icons.

The code is as follows:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head> 
    <title>CSS3 ::before和::after选择器</title>
    <style type="text/css">
        div::before
        {
            content:"php中文网";
        }
    </style>
</head>
<body>
    <div>CSS3教程</div>
</body>
</html>
Copy after login

As shown in the picture:

How to use after and before selectors? Detailed explanation of after and before selectors

Analysis:

::before and:: The two after selectors work with the content attribute to insert content, pictures, multimedia, etc. before or after the element. These two selectors are very useful and can even be used to design various small icons:

How to use after and before selectors? Detailed explanation of after and before selectors

The above is how to use the after and before selectors? A complete introduction to the detailed explanation of after and before selectors. If you want to know more about CSS3Tutorial, please pay attention to the PHP Chinese website.


The above is the detailed content of How to use after and before selectors? Detailed explanation of after and before selectors. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:lvyestudy.com
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