| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 body { overflow: hidden; } | 2 body { overflow: hidden; } |
| 3 div { | 3 div { |
| 4 width: 200px; | 4 width: 200px; |
| 5 height: 200px; | 5 height: 200px; |
| 6 border: 5px dashed blue; | 6 border: 5px dashed blue; |
| 7 background-image: -webkit-gradient(radial, left top, 0, left top, 250, f
rom(black), to(white)); | 7 background-image: -webkit-gradient(radial, left top, 0, left top, 250, f
rom(black), to(white)); |
| 8 -webkit-background-size: 66% 66%; | 8 -webkit-background-size: 66% 66%; |
| 9 } | 9 } |
| 10 </style> | 10 </style> |
| 11 <div style="-webkit-transform: rotate(45deg);"></div> | 11 <div style="transform: rotate(45deg);"></div> |
| 12 <div style="margin-top: 50px; margin-left: -50px;"></div> | 12 <div style="margin-top: 50px; margin-left: -50px;"></div> |
| 13 <div style="margin-top: -210px; margin-left: auto; margin-right: -50px;"> | 13 <div style="margin-top: -210px; margin-left: auto; margin-right: -50px;"> |
| 14 </div> | 14 </div> |
| OLD | NEW |