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(清除)的主要内容,如果未能解决你的问题,请参考以下文章