我正在尝试在两个浮动 div 的底部创建一个 div,但在底部 div 和其他 div 之间有一个边距。
这是小提琴
html:
<html><head></head>
<body>
<div class="left">Hello</div>
<div class="right">Hello</div>
<div class="bottom">Hello</div>
</body>
</html>
CSS:
.left {
width: 150px;
height: 100px;
float: left;
border: 1px solid #000;
}
.right {
width: 150px;
height: 100px;
float: left;
border: 1px solid #000;
}
.bottom {
clear: both;
margin-top: 20px;
}