float问题
栏目1
栏目2
为什么DIV2 没有颜色变化
2016-10-19
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>浮动模型</title>
<style type="text/css">
#div1{
border:2px red solid;
width:100px;
height:100px;
float:left;
}
.div2{
border:2px blue solid;
width:100px;
height:100px;
float:left;
}
</style>
</head>
<body>
<div id="div1">栏目1</div>
<div class="div2">栏目2</div>
</body>
</html>
举报