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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

將相對(duì)位置元素放在固定位置元素后面

將相對(duì)位置元素放在固定位置元素后面

Go
心有法竹 2023-08-21 15:27:18
我想把buttonwith 位置放在withrelative后面。相對(duì)位置的目的是基于我的預(yù)覽問題的答案。從這個(gè)答案來看,自定義組合框按照我的預(yù)期完美地工作。但是,在顯示任何彈出窗口和固定位置元素時(shí),可以訪問組合框的按鈕。對(duì)于這個(gè)問題,我在這里附上了我的學(xué)習(xí)代碼,divpostion:fixedbuttonHTML:<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Document</title>    <link rel="stylesheet" href="style.css"></head><body>    <div class="sticky">        <div class="fixed">        </div>    </div>    <div class="elements">        <button>I should behind this green wall!</button>    </div></body></html>CSS: html,body{    min-height: 100%; } body{    margin: 0;    background-color: rgb(233, 233, 233); } .sticky{    position: sticky;    height: 40px;    width: 100%;    background-color: orange; } .fixed{    position: fixed;    margin-top: 40px;    height: 100%;    width: 100%;    background-color: rgba(34, 138, 34, 0.555); } .elements{     background-color: rgb(231, 77, 39); } .elements button{    position: relative; }當(dāng)前設(shè)計(jì):預(yù)期設(shè)計(jì):我該如何解決?先感謝您...
查看完整描述

1 回答

?
慕田峪7331174

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超13個(gè)贊

添加z 索引.sticky將設(shè)置及其后代的 z 順序。

html,

body {

? min-height: 100%;

}


body {

? margin: 0;

? background-color: rgb(233, 233, 233);

}


.sticky {

? position: sticky;

? height: 40px;

? width: 100%;

? background-color: orange;

? z-index: 1;

}


.fixed {

? position: fixed;

? margin-top: 40px;

? height: 100%;

? width: 100%;

? background-color: rgba(34, 138, 34, 0.555);

}


.elements {

? background-color: rgb(231, 77, 39);

}


.elements button {

? position: relative;

}

<div class="sticky">

? <div class="fixed">

? </div>

</div>


<div class="elements">

? <button>I should behind this green wall!</button>

</div>



查看完整回答
反對(duì) 回復(fù) 2023-08-21
  • 1 回答
  • 0 關(guān)注
  • 181 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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