美文网首页
三列自适应布局

三列自适应布局

作者: jluemmmm | 来源:发表于2020-11-21 12:54 被阅读0次
    image.png
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <meta http-equiv="X-UA-Compatible" content="ie=edge">
      <title>三栏布局, 中间宽度自适应</title>
      <style>
        body,.box {
          width: 100vw;
          height: 100vh;
          display: flex;
          padding: 0;
          margin: 0;
        }
        .box__left {
          width: 200px;
          background:slategrey;
        }
        .box__right {
          width: 200px;
          background:seagreen;
        }
        .box__middle {
          width: 100%;
          flex: 1;
          background:salmon;
        }
        .box__left__top {
          height: 48px;
          background:thistle;
        }
    
        .box__left__bottom {
          height: 48px;
          background:thistle;
        }
    
        .box__left__middle {
          height: calc(100% - 96px);
          background:wheat;
          overflow: scroll;
        }
    
    
      </style>
    </head>
    <body>
      <div class="box">
        <div class="box__left">
          <div class="box__left__top"></div>
          <div class="box__left__middle">
            这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本这是一段文本
          </div>
          <div class="box__left__bottom"></div>
        </div>
        <div class="box__middle"></div>
        <div class="box__right"></div>
      </div>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:三列自适应布局

          本文链接:https://www.haomeiwen.com/subject/snosiktx.html