溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在css中使用content屬性

發(fā)布時(shí)間:2021-05-17 16:48:56 來(lái)源:億速云 閱讀:204 作者:Leah 欄目:web開發(fā)

如何在css中使用content屬性?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問題。

content屬性一般用于::before、::after偽元素中,用于呈現(xiàn)偽元素的內(nèi)容。平時(shí)content屬性值我們用的最多的就是給個(gè)純字符,其實(shí)它還有很多值可供選擇。

1、插入純字符

如何在css中使用content屬性

<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: '插入純字符';
    }
</style>

<body>
    <h2>1、插入純字符</h2>
    <div class="content only-text"></div>
</body>

2、插入圖片

如何在css中使用content屬性

<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>
    <h2>2、插入圖片</h2>
    <div class="content fill-image"></div>
</body>

3、插入元素屬性

如何在css中使用content屬性

<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>
    <h2>3、插入元素屬性</h2>
    <div class="content fill-dom-attr" data-title="我是.fill-dom-attr元素的 data-title 屬性值"></div>
</body>

4、插入當(dāng)前元素編號(hào)(即當(dāng)前元素索引)

這個(gè)特性可用于活動(dòng)頁(yè)面的規(guī)則介紹。

如何在css中使用content屬性

<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;
        /* 給計(jì)數(shù)器加器起個(gè)名字,它只會(huì)累加 li 標(biāo)簽的索引,li元素中間的div并不會(huì)理會(huì) */
        counter-increment: my;
    }
    .fill-dom-index li div::before{
        /* 使用指定名字的計(jì)算器 */
        content: counter(my)'- ';
        color: #f00;
        font-weight: 600;
    }
</style>

<body>
    <h2>4、插入當(dāng)前元素編號(hào)(即當(dāng)前元素索引)</h2>
    <div class="content fill-dom-index">
        <ul>
            <li><div>我是第1個(gè)li標(biāo)簽</div></li>
            <div>我是li標(biāo)簽中的第1個(gè)div標(biāo)簽</div>
            <li><div>我是第2個(gè)li標(biāo)簽</div></li>
            <li><div>我是第3個(gè)li標(biāo)簽</div></li>
            <div>我是li標(biāo)簽中的第2個(gè)div標(biāo)簽</div>
            <li><div>我是第4個(gè)li標(biāo)簽</div></li>
            <li><div>我是第5個(gè)li標(biāo)簽</div></li>
        </ul>
    </div>
</body>

5、插入當(dāng)前元素編號(hào)(指定種類)

如何在css中使用content屬性

<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{
        /* 第二個(gè)參數(shù)為list-style-type,可用值見: http://www.w3school.com.cn/cssref/pr_list-style-type.asp*/
        content: counter(my2,lower-latin)'- ';
        color: #f00;
        font-weight: 600;
    }
</style>

<body>
    <h2>5、插入當(dāng)前元素編號(hào)(指定種類)</h2>
    <div class="content fill-dom-index2">
        <ul>
            <li><div>我是第1個(gè)li標(biāo)簽</div></li>
            <div>我是li標(biāo)簽中的第1個(gè)div標(biāo)簽</div>
            <li><div>我是第2個(gè)li標(biāo)簽</div></li>
            <li><div>我是第3個(gè)li標(biāo)簽</div></li>
            <div>我是li標(biāo)簽中的第2個(gè)div標(biāo)簽</div>
            <li><div>我是第4個(gè)li標(biāo)簽</div></li>
            <li><div>我是第5個(gè)li標(biāo)簽</div></li>
        </ul>
    </div>
</body>

css的選擇器有哪些

css的選擇器可以分為三大類,即id選擇器、class選擇器、標(biāo)簽選擇器。它們之間可以有多種組合,有后代選擇器、子選擇器、偽類選擇器、通用選擇器、群組選擇器等等

看完上述內(nèi)容,你們掌握如何在css中使用content屬性的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI