css背景图撑开盒子高度

若如初见. 提交于 2020-03-18 05:20:06
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>背景图撑开盒子高度</title>
    <style>
        .bg-box {
            background-image: url(../demo.jpg);
            background-size: 100% 100%;
            background-repeat: no-repeat;
            margin:0 auto;
        }
        .bg-box::after {
            content: "";
            display: block;
            /*这里的padding =  height / width*/
            padding:20%;
        }
    </style>
</head>
<body>
    <div class="bg-box"></div>
</body>
</html>

 

 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!