Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 html, body { | |
| 2 margin: 0; | |
| 3 padding: 0; | |
| 4 display: block; | |
| 5 min-height: 400px; | |
| 6 } | |
| 7 .box { | |
| 8 display: block; | |
| 9 border: 1px solid black; | |
| 10 width: 100px; | |
| 11 height: 100px; | |
| 12 } | |
| 13 .dragged { | |
| 14 position: absolute; | |
| 15 left: 199px; /* Get the box's client area at 200,100. */ | |
| 16 top: 99px; | |
| 17 cursor: pointer; | |
| 18 } | |
| 19 .dropzone { | |
| 20 position: absolute; | |
| 21 left: 399px; /* Get the box's client area at 400,300. */ | |
| 22 top: 299px; | |
| 23 border-style: dashed; | |
| 24 } | |
| OLD | NEW |