我怎樣才能把紅色的&綠色的右邊的藍色部分?把兩個DIV放在另一個DIV旁邊
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
#red {width:100px; height:50px; background:red;}
#green {width:100px; height:50px; background:green;}
#blue {width:100px; height:100px; background:blue;}
</style>
</head>
<body>
<div id="red"></div>
<div id="green"></div>
<div id="blue"></div>
</body>
</html>
我知道如何通過添加另一個DIV作爲父母的第一和第二師做到這一點:
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
#parent {float:left;}
#red {width:100px; height:50px; background:red;}
#green {width:100px; height:50px; background:green;}
#blue {width:100px; height:100px; background:blue; float:left;}
</style>
</head>
<body>
<div id="parent">
<div id="red"></div>
<div id="green"></div>
</div>
<div id="blue"></div>
</body>
</html>
但我不知道如果我能做到,我什麼不添加另一個HTML後元件。
在此先感謝!
你甚至自己嘗試什麼嗎?這似乎並不是一件很難完成的事情...... – 2012-07-09 15:33:29
更新了我的問題。 – Mori 2012-07-09 15:49:13