float之clear(清除)

Posted startl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了float之clear(清除)相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>float</title>
<style>
        .outer{
background-color:blue;
}
.me1{
width: 100px;
height: 50px;
color:gold;
float:left;
}
.me2{
width: 100px;
height: 50px;
color:gold;
float:left;
}
.bottom{
text-align: center;
background-color: #c39;
}
.clear{
clear: both;
}
使空标签占一整行
</style>
</head>
<body>
<div class="outer">
<div class="me1">menu1</div>
<div class="me2">menu2</div>
<div class="clear"></div>

</div>

<div class="bottom">bottom</div>


</body>
</html>

技术图片

以上是关于float之clear(清除)的主要内容,如果未能解决你的问题,请参考以下文章

清除float常用方法(:after和clear:both)

浮动(float)与清除浮动(clear)

clear 方法学习与分析(清除float的简单几个用法)

float清除浮动

CSS3中三种清除浮动(float)的方法

清除浮动的方法