三栏布局的实现方法

三栏布局的实现方法有:

  1. absolute 布局
  2. float 布局
  3. flex 布局
  4. grid 布局
  5. table 布局

1.使用absolute

代码如下:

    <div class="content">
        <div class="left"></div>
        <div class="center"></div>
        <div class="right"></div>
    </div>

css代码:

        * {
            margin:0;
            padding:0;
        }

        .content {
            position: relative;
        }
        .left,.right {
            width: 200px;
            height: 300px;
            border:1px solid seagreen;
        }

        .content > .left {
            position: absolute;
            left:0;
        }

        .content > .center {
            position: absolute;
            left:200px;
            right: 200px;
            height: 300px;
            border:1px solid seagreen;
        }

        .content > .right {
            position: absolute;
            right:0;
        }

在这里插入图片描述

2. 使用float

html代码如下:

        <div class="content">
            <div class="left"></div>
              <div class="center"></div>
            <div class="right"></div>
        </div>

css代码如下:

        .left {
            float: left;
            width: 200px;
            background: green;
        }

        .center {
            overflow: hidden;
            background: pink;
        }

        .right {
            float: right;
            width: 200px;
            background: darkgray;
        }

在这里插入图片描述

3. flex布局

html代码如下:

    <div class="content">
        <div class="left"></div>
        <div class="center"></div>
        <div class="right"></div>  
    </div>

css代码如下:

        .content {
            display: flex;
            width: 100%;
            height: 300px;
        }

        .left {
            width: 300px;
            height: 300px;
            background-color: green;
        }

        .center {
            flex-grow: 1;
            height: 300px;
            background-color: #999;
        }

        .right {
            width: 300px;
            height: 300px;
            background-color: pink;
        }

在这里插入图片描述

4. grid 布局

html代码如下:

    <div class="content">
        <div class="left"></div>
        <div class="center"></div>
        <div class="right"></div>
    </div>
        .content {
            display: grid;
            grid-template-columns: 200px auto 200px;
            width: 100%;
        }

        .left {
            height: 300px;
            background-color: green;
        }

        .center {
            flex-grow: 1;
            height: 300px;
            background-color: #999;
        }

        .right {
            height: 300px;
            background-color: pink;
        }

5.table布局

html代码:

    <div class="content">
        <div class="left"></div>
        <div class="center"></div>
        <div class="right"></div>
    </div>

css代码:

        .content {
            display: table;
            width: 100%;
        }

        .left,
        .center,
        .right {
            display: table-cell;
            height: 300px;
        }

        .left {
            width: 300px;
            background-color: green;
        }

        .center {
            width: auto;
            background-color: #999;
        }

        .right {
            width: 300px;
            background-color: pink;
        }

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值