直播平台制作,css之如何清除浮动

发布时间 2023-11-27 14:08:31作者: 云豹科技-苏凌霄

直播平台制作,css之如何清除浮动

<style type="text/css">
    li {
        list-style: none;
        height: 100px;
        width: 100px;
        float: left;
        background: red;
        margin-left: 20px;
    }
    
    .father:after,
    .father:before {
        content: "";
        display: block;
        clear: both;
    }
    
    ul {
        background: pink;
    }
</style>
<ul class="father">
    <li></li>
    <li></li>
</ul>
 

​以上就是直播平台制作,css之如何清除浮动, 更多内容欢迎关注之后的文章