div 1 と div 2 をここの bigbox に収めたい
エラーを見つけるのを手伝ってください
#box div で、 rule を追加しますoverflow:auto;
。
2 番目の div を閉じた後に次の行を追加します
<div style="clear:both"></div>
したがって、コード全体は次のようになります。
<html>
<head>
<title>ДОСИТЬ ЦЕ ТЕРПІТИ!!!</title>
<meta http-equiv="content-type" content="text/html" charset="utf-8" />
<link rel="stylesheet" type="text/css" href="style.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<div id="box">
<div id="title">bigbox</div>
<div id="one">
<div class="who">div 1</div>
</div>
<div id="two">
<div class="who">div 2</div>
</div>
<div style="clear:both"></div>
</div>
</body>
</html>