国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

flex 布局實現固定頭部和底部,中間滾動布局

Pines_Cheng / 2370人閱讀

摘要:關鍵詞,實現和固定,中間多了滾動,少了撐滿和寬度根據內容撐起,當然你可以自己設置小二,上代碼來嘍布局關鍵的來啦關鍵,布局關鍵,三塊主題擺放。

關鍵詞:display: flex,flex: 1,? overflow-y: scroll;

實現:head 和footer 固定,中間body多了滾動,少了撐滿; head和footer寬度根據內容撐起,當然你可以自己設置........

小二,上代碼!

來嘍~~

// html布局
<html>
<body>
<div class="container">
    <div class="head">Page Not FoundPage Not FoundPage Not FoundPage Not FoundPagediv>
    <div class="body">
      <div>orry, but the page you were trying to view does not exist.div>
       <div>shhhhsssdiv>
      <div>shhhhsssdiv>
      <div>shhhhsssdiv>
      <div>shhhhsssdiv>
      <div>shhhhsssdiv>
    div>
 <div class="footer">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 Founddiv>
div>
body>
html>

關鍵的css來啦!

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

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

doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Page Not Foundtitle>
    <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 class="container">

    <div class="head">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 Founddiv>
    <div class="body">
      <div>orry, but the page you were trying to view does not exist.div>
       <div>shhhhsssdiv>
      <div>shhhhsssdiv>
      <div>shhhhsssdiv>
      <div>shhhhsssdiv>
      <div>shhhhsssdiv>
    div>
 <div class="footer">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 Founddiv>
div>
body>
html>

?

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/970.html

相關文章

  • flex 布局實現固定頭部底部中間滾動布局

    摘要:關鍵詞,實現和固定,中間多了滾動,少了撐滿和寬度根據內容撐起,當然你可以自己設置小二,上代碼來嘍布局關鍵的來啦關鍵,布局關鍵,三塊主題擺放。關鍵詞:display: flex,flex: 1,? overflow-y: scroll; 實現:head 和footer 固定,中間body多了滾動,少了撐滿; head和footer寬度根據內容撐起,當然你可以自己設置........ 小二,...

    cfanr 評論0 收藏0
  • flex 布局實現固定頭部底部中間滾動布局

    摘要:關鍵詞,實現和固定,中間多了滾動,少了撐滿和寬度根據內容撐起,當然你可以自己設置小二,上代碼來嘍布局關鍵的來啦關鍵,布局關鍵,三塊主題擺放。關鍵詞:display: flex,flex: 1,? overflow-y: scroll; 實現:head 和footer 固定,中間body多了滾動,少了撐滿; head和footer寬度根據內容撐起,當然你可以自己設置........ 小二,...

    antyiwei 評論0 收藏0
  • flex 布局實現固定頭部底部中間滾動布局

    摘要:關鍵詞,實現和固定,中間多了滾動,少了撐滿和寬度根據內容撐起,當然你可以自己設置小二,上代碼來嘍布局關鍵的來啦關鍵,布局關鍵,三塊主題擺放。關鍵詞:display: flex,flex: 1,? overflow-y: scroll; 實現:head 和footer 固定,中間body多了滾動,少了撐滿; head和footer寬度根據內容撐起,當然你可以自己設置........ 小二,...

    Shimmer 評論0 收藏0
  • 移動開發中固定布局

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

    XFLY 評論0 收藏0
  • 移動開發中固定布局

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

    Travis 評論0 收藏0

發表評論

0條評論

Pines_Cheng

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<