| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 #float { | 2 #float { |
| 3 float: left; | 3 float: left; |
| 4 width: 50px; | 4 width: 50px; |
| 5 height: 50px; | 5 height: 50px; |
| 6 background-color: green; | 6 background-color: green; |
| 7 } | 7 } |
| 8 </style> | 8 </style> |
| 9 <div style="font: 20px ahem; width: 220px; border: solid blue; -webkit-font-smoo
thing: none;"> | 9 <div style="font: 20px Ahem; width: 220px; border: solid blue; -webkit-font-smoo
thing: none;"> |
| 10 <span id="span">Lorem</span> ipsum dolor sit amet, consectetur <div id="floa
t"></div>adipiscing elit. | 10 <span id="span">Lorem</span> ipsum dolor sit amet, consectetur <div id="floa
t"></div>adipiscing elit. |
| 11 </div> | 11 </div> |
| 12 <div style="z-index: -1; position: absolute; top: 91px; left: 11px; width: 50px;
height: 50px; background-color: red;"></div> | 12 <div style="z-index: -1; position: absolute; top: 91px; left: 11px; width: 50px;
height: 50px; background-color: red;"></div> |
| 13 <script> | 13 <script> |
| 14 document.body.offsetTop; | 14 document.body.offsetTop; |
| 15 document.getElementById("span").innerText = "lorem"; | 15 document.getElementById("span").innerText = "lorem"; |
| 16 document.getElementById("float").style.height = "25px"; | 16 document.getElementById("float").style.height = "25px"; |
| 17 </script> | 17 </script> |
| OLD | NEW |