OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <style type="text/css"> | |
5 .one { background-color: beige; width: 50%; } | |
6 .two { background-color: antiquewhite; width: 25%; } | |
7 .three { background-color: bisque; width: 25%; } | |
8 .one, .two, .three { min-height: 100px; float: left; } | |
9 </style> | |
10 <body> | |
11 <p>The test passes if you see 3 blocks bellow arranged on a single row</p> | |
12 <div class="one"></div> | |
13 <div class="two"></div> | |
14 <div class="three"></div> | |
15 </body> | |
OLD | NEW |