成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

flex 布局實(shí)現(xiàn)固定頭部和底部,中間滾動(dòng)布局

antyiwei / 1459人閱讀

摘要:關(guān)鍵詞,實(shí)現(xiàn)和固定,中間多了滾動(dòng),少了撐滿和寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置小二,上代碼來(lái)嘍布局關(guān)鍵的來(lái)啦關(guān)鍵,布局關(guān)鍵,三塊主題擺放。

關(guān)鍵詞:display: flex,flex: 1,? overflow-y: scroll;

實(shí)現(xiàn):head 和footer 固定,中間body多了滾動(dòng),少了撐滿; head和footer寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置........

小二,上代碼!

來(lái)嘍~~

// html布局 html body div div Page Not FoundPage Not FoundPage Not FoundPage Not FoundPage /div div div orry, but the page you were trying to view does not exist. /div div shhhhsss /div div shhhhsss /div div shhhhsss /div div shhhhsss /div div shhhhsss /div /div div Page Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not Found /div /div /body /html

關(guān)鍵的css來(lái)啦!

2 * { 3 line-height: 1.2; 4 margin: 0; 6 html, body { 7 font-family: sans-serif; 8 height: 100%; 9 width: 100%; 11 .container{ 12 display: flex; // 關(guān)鍵, flex布局 13 flex-direction: column; // 關(guān)鍵,三塊主題column擺放。 14 height: 100vh; // 關(guān)鍵,設(shè)置高度為可見高度的100%; 16 .head{ 17 width: 100%; 18 background: springgreen; 20 .body{ 21 flex: 1; // 關(guān)鍵, 填充剩余空間 22 width: 100%; 23 background: lightyellow; 24 overflow-y: scroll; // 關(guān)鍵, 超出部分滾動(dòng) 26 .footer{ 27 width: 100%; 28 background: goldenrod; 29 }

?附上全部代碼,可以自己復(fù)制到瀏覽器中打開,看效果~

!doctype html html lang="en" head meta charset="utf-8" title Page Not Found /title meta name="viewport" content="width=device-width, initial-scale=1" style line-height: 1.2; margin: 0; html, body { color: #888; font-family: sans-serif; height: 100%; width: 100%; .container{ display: flex; height: 100vh; flex-direction: column; .head{ width: 100%; background: springgreen; .body { background: lightyellow; width: 100%; flex:1; color: black; overflow-y: scroll; .footer { background: goldenrod; width: 100%; .body div { height: 200px; width: 300px; background: greenyellow; margin: 20px; /style /head body div div Page Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not Found /div div div orry, but the page you were trying to view does not exist. /div div shhhhsss /div div shhhhsss /div div shhhhsss /div div shhhhsss /div div shhhhsss /div /div div Page Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not FoundPage Not Found /div /div /body /html

?

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/854.html

相關(guān)文章

  • flex 布局實(shí)現(xiàn)固定頭部底部,中間滾動(dòng)布局

    摘要:關(guān)鍵詞,實(shí)現(xiàn)和固定,中間多了滾動(dòng),少了撐滿和寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置小二,上代碼來(lái)嘍布局關(guān)鍵的來(lái)啦關(guān)鍵,布局關(guān)鍵,三塊主題擺放。關(guān)鍵詞:display: flex,flex: 1,? overflow-y: scroll; 實(shí)現(xiàn):head 和footer 固定,中間body多了滾動(dòng),少了撐滿; head和footer寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置........ 小二,上代...

    Pines_Cheng 評(píng)論0 收藏0
  • flex 布局實(shí)現(xiàn)固定頭部底部,中間滾動(dòng)布局

    摘要:關(guān)鍵詞,實(shí)現(xiàn)和固定,中間多了滾動(dòng),少了撐滿和寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置小二,上代碼來(lái)嘍布局關(guān)鍵的來(lái)啦關(guān)鍵,布局關(guān)鍵,三塊主題擺放。關(guān)鍵詞:display: flex,flex: 1,? overflow-y: scroll; 實(shí)現(xiàn):head 和footer 固定,中間body多了滾動(dòng),少了撐滿; head和footer寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置........ 小二,...

    cfanr 評(píng)論0 收藏0
  • flex 布局實(shí)現(xiàn)固定頭部底部,中間滾動(dòng)布局

    摘要:關(guān)鍵詞,實(shí)現(xiàn)和固定,中間多了滾動(dòng),少了撐滿和寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置小二,上代碼來(lái)嘍布局關(guān)鍵的來(lái)啦關(guān)鍵,布局關(guān)鍵,三塊主題擺放。關(guān)鍵詞:display: flex,flex: 1,? overflow-y: scroll; 實(shí)現(xiàn):head 和footer 固定,中間body多了滾動(dòng),少了撐滿; head和footer寬度根據(jù)內(nèi)容撐起,當(dāng)然你可以自己設(shè)置........ 小二,...

    Shimmer 評(píng)論0 收藏0
  • 移動(dòng)開發(fā)中固定布局

    摘要:記錄一下移動(dòng)開發(fā)過(guò)程中出現(xiàn)的問(wèn)題。若是涉及到移動(dòng)開發(fā)布局中碰到固定某一部分,其余部分可滾動(dòng),盡量不要使用可用替代,若是不需要考慮兼容性,用更佳。 記錄一下移動(dòng)開發(fā)過(guò)程中出現(xiàn)的問(wèn)題。從最常見的布局說(shuō)起,固定頭部或底部算是最常見的需求了假定頁(yè)面布局如下: 實(shí)現(xiàn)頭部、底部固定,中間滾動(dòng),有三種簡(jiǎn)單實(shí)現(xiàn)方式: fix...

    XFLY 評(píng)論0 收藏0
  • 移動(dòng)開發(fā)中固定布局

    摘要:記錄一下移動(dòng)開發(fā)過(guò)程中出現(xiàn)的問(wèn)題。若是涉及到移動(dòng)開發(fā)布局中碰到固定某一部分,其余部分可滾動(dòng),盡量不要使用可用替代,若是不需要考慮兼容性,用更佳。 記錄一下移動(dòng)開發(fā)過(guò)程中出現(xiàn)的問(wèn)題。從最常見的布局說(shuō)起,固定頭部或底部算是最常見的需求了假定頁(yè)面布局如下: 實(shí)現(xiàn)頭部、底部固定,中間滾動(dòng),有三種簡(jiǎn)單實(shí)現(xiàn)方式: fix...

    Travis 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

antyiwei

|高級(jí)講師

TA的文章

閱讀更多
最新活動(dòng)
閱讀需要支付1元查看
<