赤と緑の区画の右側に青の区画を配置するにはどうすればよいですか?
<!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 を親として 1 番目と 2 番目の部門に追加する方法を知っています。
<!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 要素を追加せずに、目的を達成できるかどうか疑問に思っています。
前もって感謝します!