前端面试系列:页面布局之三栏布局

2020-01-02  本文已影响0人  乌龟小姐v
假设高度已知,请写出三栏布局,其中左栏、右栏宽度各为300px;中间自适应。
  <section class="layout float">
    <style media="screen">
      * {
        margin: 0;
        padding: 0;
      }
      .left-center-right div {
        min-height: 100px;
      }
      .left {
        float: left;
        background: red;
        width: 300px;
      }
      .right {
        float: right;
        background: blue;
        width: 300px;
      }
      .center {
        background: yellow;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="right"></div>
      <div class="center">
        <h2>浮动布局</h2>
        1、浮动布局左右固定宽度,中间自适应
        2、浮动布局左右固定宽度,中间自适应
      </div>
    </article>
  </section>
  <section class="layout position">
    <style media="screen">
      html * {
        margin: 0;
        padding: 0;
      }
      .left-center-right div {
        position: absolute;
        min-height: 100px;
      }
      .left {
        left: 0;
        width: 300px;
        background: red;
      }
      .right {
        right: 0;
        width: 300px;
        background: blue;
      }
     .center {
        left: 300px;
        right: 300px;
        background: yellow;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="center">
        <h2>绝对定位</h2>
        1、定位布局左右固定宽度,中间自适应
        2、定位布局左右固定宽度,中间自适应
      </div>
      <div class="right"></div>
    </article>
  </section>
<section class="layout flex">
    <style>
      html * {
        margin: 0;
        padding: 0;
      }
      .left-center-right div{
        min-height: 100px;
      }
      .left-center-right {
        display: flex;
      }
      .left {
        width: 300px;
        background: red;
        order: -1;
        /* order属性定义项目的排列顺序 数值越小 排列越靠前 默认为0 */     
      }
      .center {
        flex: 1;
        background: yellow;
      }
      .right {
        width: 300px;
        background: blue;
      }
    </style>
    <article class="left-center-right">
      <div class="center">
        <h2>flex布局</h2>
        1、flex布局左右固定宽度,中间自适应
        2、flex布局左右固定宽度,中间自适应
      </div>
      <div class="left"></div>
      <div class="right"></div>
    </article>
  </section>
  <section class="layout table">
    <style>
      html * {
        margin: 0;
        padding: 0;
      }
      .left-center-right {
        display: table;
        width: 100%;
        height: 100px;
      }
      .left-center-right div {
        display: table-cell;
        min-height: 100px;
      }
      .left {
        background: red;
        width: 300px;
      }
      .center {
        background: yellow;
      }
      .right {
        background: blue;
        width: 300px;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="center">
        <h2>tabale布局</h2>
        1、table布局左右固定宽度,中间自适应
        2、table布局左右固定宽度,中间自适应
      </div>
      <div class="right"></div>
    </article>
  </section>
 <section class="layout grid">
    <style media="screen">
      html * {
        margin: 0;
        padding: 0;
      }
      .left-center-right {
        display: grid;
        width: 100%;
        grid-template-rows: 100px; 
        grid-template-columns: 300px auto 300px;
      }
      .left-center-right div {
        min-height: 100px;
      }
      .left {
        background: red;
      }
      .center {
        background: yellow;
      }
      .right {
        background: blue;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="center">
        1、网格布局左右固定宽度,中间自适应
        2、网格布局左右固定宽度,中间自适应
      </div>
      <div class="right"></div>
    </article>
  </section>
总结:

1、这五种解决方案各自的优缺点

2、当高度不定时,两侧的高度也跟这中间的高度撑开,以上五种有哪几种可以继续用,哪几种不能用了?
通过看效果:浮动和绝对定位是不能用的,flex布局、表格布局和网格布局可以继续使用。

上一篇 下一篇

猜你喜欢

热点阅读