Specific use of CSS content attribute

Specific use of CSS content attribute

The content attribute is generally used in the ::before and ::after pseudo-elements to present the content of the pseudo-elements. Usually, the most commonly used content attribute value is a pure character, but there are actually many other values ​​to choose from.

1. Insert pure characters

<style>
    *{margin: 0;padding: 0;box-sizing: border-box;}
    li{list-style: none;}
    .content{
        position: relative;padding: 10px;
        border: 1px solid #666;margin: 10px;
    }
    .content.only-text::before{
        content: 'Insert pure characters';
    }
</style>

<body>
    <h1>1. Insert pure characters</h1>
    <div class="content only-text"></div>
</body>

2. Insert pictures

<style>
    *{margin: 0;padding: 0;box-sizing: border-box;}
    li{list-style: none;}
    .content{
        position: relative;padding: 10px;
        border: 1px solid #666;margin: 10px;
    }
    .content.fill-image::before{
        content: url('https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo_top_86d58ae1.png');
    }
</style>

<body>
    <h1>2. Insert pictures</h1>
    <div class="content fill-image"></div>
</body>

3. Insert element attributes

<style>
    *{margin: 0;padding: 0;box-sizing: border-box;}
    li{list-style: none;}
    .content{
        position: relative;padding: 10px;
        border: 1px solid #666;margin: 10px;
    }
    .content.fill-dom-attr::before{
        content: attr(data-title);
    }
</style>

<body>
    <h1>3. Insert element attributes</h1>
    <div class="content fill-dom-attr" data-title="I am the data-title attribute value of the .fill-dom-attr element"></div>
</body>

4. Insert the current element number (i.e. the current element index)

This feature can be used to introduce the rules of the event page.

<style>
    *{margin: 0;padding: 0;box-sizing: border-box;}
    li{list-style: none;}
    .content{
        position: relative;padding: 10px;
        border: 1px solid #666;margin: 10px;
    }
    .fill-dom-index li{
        position: relative;
        /* Give the counter a name. It will only add the index of the li tag. The div in the middle of the li element will not be taken into account*/
        counter-increment: my;
    }
    .fill-dom-index li div::before{
        /* Use the calculator with the specified name */
        content: counter(my)'- ';
        color: #f00;
        font-weight: 600;
    }
</style>

<body>
    <h1>4. Insert the current element number (i.e. the current element index)</h1>
    <div class="content fill-dom-index">
        <ul>
            <li><div>I am the first li tag</div></li>
            <div>I am the first div tag in the li tag</div>
            <li><div>I am the second li tag</div></li>
            <li><div>I am the third li tag</div></li>
            <div>I am the second div tag in the li tag</div>
            <li><div>I am the 4th li tag</div></li>
            <li><div>I am the 5th li tag</div></li>
        </ul>
    </div>
</body>

5. Insert the current element number (specify type)

<style>
    *{margin: 0;padding: 0;box-sizing: border-box;}
    li{list-style: none;}
    .content{
        position: relative;padding: 10px;
        border: 1px solid #666;margin: 10px;
    }
    .fill-dom-index2 li{
        position: relative;
        counter-increment: my2;
    }
    .fill-dom-index2 li div::before{
        /* The second parameter is list-style-type, available values ​​are as follows: http://www.w3school.com.cn/cssref/pr_list-style-type.asp*/
        content: counter(my2,lower-latin)'- ';
        color: #f00;
        font-weight: 600;
    }
</style>

<body>
    <h1>5. Insert the current element number (specify type)</h1>
    <div class="content fill-dom-index2">
        <ul>
            <li><div>I am the first li tag</div></li>
            <div>I am the first div tag in the li tag</div>
            <li><div>I am the second li tag</div></li>
            <li><div>I am the third li tag</div></li>
            <div>I am the second div tag in the li tag</div>
            <li><div>I am the 4th li tag</div></li>
            <li><div>I am the 5th li tag</div></li>
        </ul>
    </div>
</body>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Summary of essential knowledge points for MySQL query optimization

>>:  docker logs - view the implementation of docker container logs

Recommend

A mobile adaptive web page effect solves the problem of small display page

For work needs, I need to make a mobile phone adap...

JavaScript Objects (details)

Table of contents JavaScript Objects 1. Definitio...

Detailed explanation of CSS3 elastic expansion box

use Flexible boxes play a vital role in front-end...

MySQL 5.7 JSON type usage details

JSON is a lightweight data exchange format that u...

Correct steps to install Nginx in Linux

Preface If you are like me, as a hard-working Jav...

MySQL 5.7.18 Green Edition Download and Installation Tutorial

This article records the detailed process of down...

How to implement logic reuse with Vue3 composition API

Composition API implements logic reuse steps: Ext...

WeChat applet custom menu navigation to achieve staircase effect

Design Intentions When developing a page, you oft...

Special commands in MySql database query

First: Installation of MySQL Download the MySQL s...

Methods and techniques for quickly displaying web page images

1. Use .gifs rather than .jpgs. GIFs are smaller ...

React uses routing to redirect to the login interface

In the previous article, after configuring the we...

JDBC-idea import mysql to connect java jar package (mac)

Preface 1. This article uses MySQL 8.0 version Co...

Detailed installation process of nodejs management tool nvm

nvm nvm is responsible for managing multiple vers...