濮阳杆衣贸易有限公司

主頁 > 知識庫 > 詳解CSS多種三列自適應(yīng)布局實(shí)現(xiàn)

詳解CSS多種三列自適應(yīng)布局實(shí)現(xiàn)

熱門標(biāo)簽:地圖標(biāo)注位置怎么弄圖 400電話唐山辦理 威力最大的電銷機(jī)器人 電銷專用外呼線路 電銷外呼系統(tǒng)是違法的嗎 旅游地圖標(biāo)注線路 廣西房產(chǎn)智能外呼系統(tǒng)推薦 電話機(jī)器人鑰匙扣 漯河外呼調(diào)研線路

前言

為了按照常規(guī)WEB布局,這里全部采用擁有header和footer模式進(jìn)行左中右布局編寫。

第一種:基于float實(shí)現(xiàn)

實(shí)現(xiàn)思路

常規(guī)思路,使左右兩個(gè)Aside分別浮動(dòng)至左右兩側(cè)即可

代碼實(shí)現(xiàn)

<!-- HTML部分 -->
<div class="container">
  <!-- 頂部Header -->
  <header>這里是頭部</header>
  <!-- 中間aside及content -->
  <div class="middle clearfix">
    <aside class="left"></aside>
    <aside class="right"></aside>
    <!-- 中間content顯示內(nèi)容 為了防止將右側(cè)擠下去故放置在右側(cè)欄下方 -->
    <div class="content">這里是內(nèi)容</div>
  </div>
  <!-- 底部Footer -->
  <footer></footer>
</div>
<!-- CSS部分 -->
<style lang="scss">
  * {
    margin: 0;
    padding: 0;
  }
  
  .clearfix {
    zoom: 1;
    &::after {
      display: block;
      content: ' ';
      clear:both
    }
  }
  
  html, body {
    width: 100%;
    height: 100%
    }
    .container {
      width: 100%
      height: 100%
      header {
        height: 80px;
        background: rgba(0, 0, 0, 0.5)
      }
      footer {
        height: 80px;
        background: rgba(0, 0, 0, 0.5)
      }
      .middle {
        height: calc(100% - 80px - 80px)
        aside {
          height: 100%;
          width: 300px;
          background: rgba(156, 154, 249, 1)
        }
        .left {
          float: left
        }
        .right: {
          float: right
        }
      }
    }
  }
</style>

實(shí)現(xiàn)效果

第二種:基于position:absolute實(shí)現(xiàn)

實(shí)現(xiàn)思路

為中間三欄父級賦予position: relative,賦予左右Aside position: absolute,并且分別賦予left: 0 right: 0 width:自定義值,賦予中間content left,right 分別等于左右width即可

代碼實(shí)現(xiàn)

<!-- HTML相關(guān)代碼 -->
<div class="container">
  <!-- 頂部Header -->
  <header></header>
  <div class="middle">
    <!-- 左側(cè)Aside -->
    <aside class="left"></aside>
    <!-- 中間content內(nèi)容 -->
    <div class="content">這里是內(nèi)容</div>
    <!-- 右側(cè)Aside -->
    <aside class="right"></aside>
  </div>
  <!-- 底部Footer -->
  <footer></footer>
</div>
<!-- CSS相關(guān)代碼 -->
<style lang="scss">
  * {
    margin: 0;
    padding: 0
  }
  
  html, body {
    width: 100%;
    height: 100%
  }
  
  .container {
    width: 100%;
    height: 100%;
    header {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    footer {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    .middle {
      height: calc(100% - 80px - 80px);
      position: relative;
      aside,
      .content {
        position: absolute;
      }
      .left {
        width: 300px;
        background: rgba(156, 154, 249, 1);
        left: 0;
        height: 100%;
      }
      .right {
        width: 300px;
        background: rgba(156, 154, 249, 1);
        right: 0;
        height: 100%;
      }
      .content {
        left: 300px;
        right: 300px;
      }
    }
  }
</style>

實(shí)現(xiàn)效果

第三種:基于display:flex實(shí)現(xiàn)

實(shí)現(xiàn)思路

賦予左中右三列父級display: flex,賦予左右Aside width自定義,賦予中間content flex:1即可

代碼實(shí)現(xiàn)

<!-- HTML相關(guān)代碼 -->
<div class="container">
  <!-- 頂部Header -->
  <header></header>
  <div class="middle">
    <!-- 左側(cè)Aside -->
    <aside class="left"></aside>
    <!-- 中間content內(nèi)容 -->
    <div class="content">這里是內(nèi)容</div>
    <!-- 右側(cè)Aside -->
    <aside class="right"></aside>
  </div>
  <!-- 底部Footer -->
  <footer></footer>
</div>
<!-- CSS部分 -->
<style lang="scss">
  * {
    margin: 0;
    padding: 0;
  }
  
  html, body {
    width: 100%;
    height: 100%;
  }
  
  .container {
    header {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    footer {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    .middle {
      display: flex;
      height: calc(100% - 80px - 80px);
      aside {
        width: 300px;
        background: rgba(156, 154, 249, 1);
      }
      .content: {
        flex: 1;
      }
    }
  }
</style>

實(shí)現(xiàn)效果

第四種:基于display: table實(shí)現(xiàn)

實(shí)現(xiàn)思路

賦予左中右三列父級display: table, width: 100%,分別賦予左中右三列display: table-cell,分別賦予左右Aside width即可。

代碼實(shí)現(xiàn)

<!-- HTML相關(guān)代碼 -->
<div class="container">
  <!-- 頂部Header -->
  <header></header>
  <div class="middle">
    <!-- 左側(cè)Aside -->
    <aside class="left"></aside>
    <!-- 中間content內(nèi)容 -->
    <div class="content">這里是內(nèi)容</div>
    <!-- 右側(cè)Aside -->
    <aside class="right"></aside>
  </div>
  <!-- 底部Footer -->
  <footer></footer>
</div>
<!-- CSS部分 -->
<style lang="scss">
  * {
    margin: 0;
    padding: 0;
  }
  
  html, body {
    width: 100%;
    height: 100%;
  }
  
  .container {
    header {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    footer {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    .middle {
      display: table;
      width: 100%
      height: calc(100% - 80px - 80px);
      aside {
        width: 300px;
        display: table-cell;
        background: rgba(156, 154, 249, 1);
      }
      .content: {
        display: table-cell;
      }
    }
  }
</style>

實(shí)現(xiàn)效果

第五種:基于display: grid實(shí)現(xiàn)

實(shí)現(xiàn)思路

賦予左中右三列父級display: grid,并且使用grid-template-columns: 300px auto 300px,將其分為寬為300px、auto、300px三列布局即可。

代碼實(shí)現(xiàn)

<!-- HTML相關(guān)代碼 -->
<div class="container">
  <!-- 頂部Header -->
  <header></header>
  <div class="middle">
    <!-- 左側(cè)Aside -->
    <aside class="left"></aside>
    <!-- 中間content內(nèi)容 -->
    <div class="content">這里是內(nèi)容</div>
    <!-- 右側(cè)Aside -->
    <aside class="right"></aside>
  </div>
  <!-- 底部Footer -->
  <footer></footer>
</div>
<!-- CSS部分 -->
<style lang="scss">
  * {
    margin: 0;
    padding: 0;
  }
  
  html, body {
    width: 100%;
    height: 100%;
  }
  
  .container {
    header {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    footer {
      height: 80px;
      background: rgba(0, 0, 0, 0.5);
    }
    .middle {
      display: grid;
      grid-template-columns: 300px auto 300px;
      height: calc(100% - 80px - 80px);
      aside {
        background: rgba(156, 154, 249, 1);
      }
    }
  }
</style>

實(shí)現(xiàn)效果

到此這篇關(guān)于詳解CSS多種三列自適應(yīng)布局實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)CSS 三列自適應(yīng)布局內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家! 

標(biāo)簽:綏化 無錫 湘西 銅陵 欽州 湖北 焦作 試駕邀約

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《詳解CSS多種三列自適應(yīng)布局實(shí)現(xiàn)》,本文關(guān)鍵詞  詳解,CSS,多種,三列,自,適應(yīng),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《詳解CSS多種三列自適應(yīng)布局實(shí)現(xiàn)》相關(guān)的同類信息!
  • 本頁收集關(guān)于詳解CSS多種三列自適應(yīng)布局實(shí)現(xiàn)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    柳江县| 渭南市| 叶城县| 资源县| 连南| 鸡东县| 乐都县| 徐州市| 井陉县| 芜湖市| 英山县| 崇州市| 万全县| 巫溪县| 行唐县| 泗阳县| 莱芜市| 崇左市| 双桥区| 刚察县| 林芝县| 嘉祥县| 太谷县| 稻城县| 砚山县| 卓资县| 都江堰市| 当阳市| 新田县| 阳原县| 鸡东县| 台中市| 清流县| 白沙| 安顺市| 故城县| 武山县| 宁波市| 萨嘎县| 东辽县| 万安县|