OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 #container { | |
4 width: 400px; | |
5 } | |
6 | |
7 .square { | |
8 width: 100px; | |
9 height: 100px; | |
10 background-color: blue; | |
11 } | |
12 | |
13 #float { | |
14 float: left; | |
15 } | |
16 | |
17 #bfc { | |
18 margin-left: 30%; | |
19 overflow: hidden; | |
20 } | |
21 </style> | |
22 <p>You should see two blue squares below.</p> | |
23 <div id="container"> | |
24 <div id="float" class="square"></div> | |
25 <div id="bfc" class="square"></div> | |
26 </div> | |
OLD | NEW |