第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Z-index 過濾器影響具有較高 z-index 的內(nèi)容

Z-index 過濾器影響具有較高 z-index 的內(nèi)容

慕斯709654 2024-01-03 17:34:10
我想在 HTMLCSS 中制作一段內(nèi)容,其背景圖像上有一個灰色背景(過濾器),這相當(dāng)簡單,但內(nèi)容也得到了灰色過濾器,我給所有內(nèi)容一個相對位置并執(zhí)行了以下操作:背景:最低 z-index 過濾器:中間 z-index 內(nèi)容:最高 z-index (在我看來,不應(yīng)受到中間 z-index 的影響)但事實是:它確實如此,中間 z-index 影響我的最高 z-index索引,我不明白為什么這是我編寫的代碼(示例代碼,因為其他代碼太大)html:<body><div class="filter">    <div class="content">        <h1>Hello Stackoverflow</h1>        <p>Please help me view this without the filter effect affecting the content ( this part)</p>    </div> </div> </body>CSS:body{    background-image: url('the-doors.jfif');    position: relative;    z-index: 1;}.filter{    background-color: grey;    opacity: 40%;    position: relative;    z-index: 2;}.content{    color: green;    font-size: 3.0em;    position: relative;    z-index: 3;    }有人可以幫我解釋一下為什么內(nèi)容也能獲得灰色濾鏡效果,盡管它有更高的 z-index
查看完整描述

1 回答

?
絕地?zé)o雙

TA貢獻(xiàn)1946條經(jīng)驗 獲得超4個贊

您應(yīng)該刪除不透明度并使用 rgba 顏色來使顏色具有不透明度。


body{

    background-image: url('the-doors.jfif');

    position: relative;

}

.filter{

    position: relative;

    background-color:rgba(100,255,255,.5) /* <==  Here you should change it */

}

.content{

    color: green;

    font-size: 3.0em;

    position: relative;

}

<div class="filter">


    <div class="content">

        <h1>Hello Stackoverflow</h1>

        <p>Please help me view this without the filter effect affecting the content ( this part)</p>

    </div>

 </div>


查看完整回答
反對 回復(fù) 2024-01-03
  • 1 回答
  • 0 關(guān)注
  • 159 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號