直播平台制作,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之如何清除浮动, 更多内容欢迎关注之后的文章
标签:浮动,清除,平台,直播,制作,css From: https://www.cnblogs.com/yunbaomengnan/p/17859106.html