下面这个例子 如果给第二个DIV 设置float:left属性,第一个DIV会再下沉20px;并且文字进入第二个div; 而第二个DIV的文字留在原地?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
*{ margin:0; padding:0; }
div{ width:300px; height:100px; margin:20px}
.one{ border:2px solid yellow; float:left}
.two{ border:2px solid blue; }
</style>
</head>
<body>
<div class="one">1</div>
<div class="two">22</div>
</body>
</html>
nickylau82
qyy2499760117_叶子
chwech
o_n