我需要知道爲什麼下面的代碼:浮動和保證金
<!doctype html>
<html>
<head>
<title></title>
<style type="text/css">
*
{
margin:0px;
padding:0px;
}
#right
{
float:right;
}
#content
{
margin-top:20px;
}
</style>
</head>
<body>
<div id="right">a</div>
<div id="content">b</div>
</body>
</html>
適用的20像素距頂部也在#right股利。
我知道如何解決這個問題,但我對這個原因感興趣。謝謝。 – user232028 2010-09-22 14:37:16
原因是因爲您沒有清除浮動元素。 – Ross 2010-09-22 14:47:07