左右两栏div布局,高度自适应

页面结构如下:

1

2

3

4

5

6

7

8

<div class="container">

    <div class="left">

        left

    </div>

    <div class="right">

        right

    </div>

</div>

  需要这样的效果:左右两边高度有内容多少,自适应

 

下面提供三种方式:

第一种: 使用display:table;

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

.container {

                display: table;

                width: 80%;

            }

             

            .container .left,

            .container .right {

                display: table-cell;

            }

             

            .container .left {

                width: 20%;

                background: pink;

            }

             

            .container .right {

                width: 80%;

                background: deeppink;

            }

  利用的table本身的自适应特性,兼容性好,容易使用

 

 

方法2:利用margin和padding

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

.container {

                overflow: hidden;

                width: 400px;

            }

            .container .left,

            .container .right {

                float: left;

                margin-bottom: -10000px;

                padding-bottom: 10000px;

            }

            .container .left {

                width: 20%;

                background: pink;

            }

            .container .right {

                width: 80%;

                background: deeppink;

            }

  这个原理是,左右的内容高度并没有跟着变化,只是由margin和padding撑出了一些地方,然后被隐藏了,当有一边的高度由内容撑起来之后,另一边的看似也跟着起来了,实际上那部分是padding

 

 

方法3:flex,兼容性IE10下面不能使用,手机端也有些兼容

1

2

3

4

5

6

7

8

9

10

11

12

13

14

.container {

                display: flex;

                width: 400px;

            }

             

            .container .left {

                width: 20%;

                background: pink;

            }

             

            .container .right {

                width: 80%;

                background: deeppink;

            }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值