Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .square { float:left; width:20px; height:20px; } | |
| 4 .hotpink { background:hotpink; } | |
| 5 .blue { background:blue; } | |
| 6 </style> | |
| 7 <p>There should be five consecutive squares below, from left to right: hotpink, blue, hotpink, blue, hotpink.</p> | |
| 8 <div class="hotpink square"></div> | |
| 9 <div class="blue square"></div> | |
| 10 <div class="hotpink square"></div> | |
| 11 <div class="blue square"></div> | |
| 12 <div class="hotpink square"></div> | |
| OLD | NEW |