欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

padding-bottom百分比,进行占位和高度自适应

程序员文章站 2022-05-31 20:53:43
...

在css里面,padding-top,padding-bottom,margin-top,margin-bottom取值为百分比的时候,参照的是父元素的宽度。

利用这个知识点我们可以进行提前占位,避免资源加载时候的闪烁,还可以让高度自适应。

因为高度都是被内容撑开的,一般不定,那么通过百分比来设置高度,就变得不是很实用。

对于图片等资源来说,加载是需要时间的,由于高度被图片撑开的过程,不可避免会出现闪烁

<style>
        *{
            padding: 0;
            margin: 0;
        }
        .wrapper{
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 40%;
        }
        .wrapper__content{
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            background-color: red;
        }
    </style>
    <div class="wrapper">
        <div class="wrapper__content">
    
        </div>
    </div>

 

padding-bottom百分比,进行占位和高度自适应

可以发现当宽度为400的时候高度为160,并且高度是有padding撑开的随着宽度的改变,高度也会改变,

相关标签: css 自适应