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

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

css header 固定 footer也固定 怎么實(shí)現(xiàn)?

css header 固定 footer也固定 怎么實(shí)現(xiàn)?

qq_遁去的一_1 2019-02-25 13:23:04
這里footer也固定包括兩種情況,第一種是當(dāng)頁(yè)面內(nèi)容尚未填充滿的時(shí)候,頁(yè)腳需要固定在底部,第二種是頁(yè)面填充滿后,頁(yè)腳需要隨頁(yè)面內(nèi)容的增加而填充在主體內(nèi)容的下方。我需求這兩種情況結(jié)合在一起實(shí)現(xiàn)!第二張需求單獨(dú)實(shí)現(xiàn)<html><head><style type="text/css">html,body{height:100%}.footer {margin-top:-30px;height:30px;background-color:#eee;}.wrap{min-height:100%}.main{padding-bottom:30px;overflow:hidden;}</style></head><body><div class="wrap">    <div class="main">這里是網(wǎng)頁(yè)的主體</div></div><div class="footer">這里是頁(yè)腳</div></body></html>
查看完整描述

2 回答

?
撒科打諢

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

可以試試position:fixed;

footer可以使用絕對(duì)定位,相對(duì)與page元素,結(jié)構(gòu)比如這樣


 <div class="page">

    <div class="header">11111</div>

    <div class="footer">22222</div>

  </div>

 .page{

    position: relative;

 }

.footer{

    position: absolute;

    bottom: 0;

}

這樣footer就一直居于page元素的底部了

page還要設(shè)計(jì)一個(gè)min-height,值為一開(kāi)始沒(méi)內(nèi)容的時(shí)候的高度


查看完整回答
反對(duì) 回復(fù) 2019-03-05
?
慕標(biāo)5832272

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

兩種都可以用css來(lái)實(shí)現(xiàn)

第一種:


 div{height:100%;}

    header{height:50px;}

    div.body{height:calc(100% - 100px);}

    footer{height:50px;}

第二種:


div{height:100%;}

    header{height:50px}

    div.body{min-height:1px;}

    footer{height:50px}

二者結(jié)合:


div{width:100%;height:100%;}

    header{height:50px}

    div.body{min-height:1px;height:auto;max-height:calc(100% - 100px);}

    footer{height:50px}

html結(jié)構(gòu)


<html>

    <body>

        <div>

            <header></header>

            <div class="body"></div>

            <footer></footer>

        </div>

    </body>

</html>


查看完整回答
反對(duì) 回復(fù) 2019-03-05
  • 2 回答
  • 0 關(guān)注
  • 1061 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(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)