盒子没有高度时填充背景图片

邮差的信 提交于 2019-12-05 20:20:12
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        ul,li{
            list-style: none;
        }
        .box{
            width: 200px;
        }
        .box ul{
            height:auto !important;
            height: 0px; 
            min-height: 0px;
            background: url(./style/img/04_03.png) no-repeat center center;
            -webkit-background-size: 100% 100%;
            background-size: 100% 100%;
        }
        .box ul:after{
            content:"."; 
            height:0; 
            visibility:hidden; 
            display:block; 
            clear:both; 
        }
    </style>
</head>
<body>
    <div class="box">
        <ul>
            <li>111</li>
            <li>111</li>
        </ul>
    </div>
</body>
</html>

  

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