| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 #multicol { | 5 #multicol { |
| 6 -moz-column-width: 100px; |
| 6 -webkit-column-width: 100px; | 7 -webkit-column-width: 100px; |
| 7 -moz-column-width: 100px; | 8 -webkit-column-fill: auto; |
| 8 column-width: 100px; | 9 column-width: 100px; |
| 10 column-fill: auto; |
| 9 height: 200px; | 11 height: 200px; |
| 10 } | 12 } |
| 11 | 13 |
| 12 span { | 14 span { |
| 13 display: inline-block; | 15 display: inline-block; |
| 14 height: 20px; | 16 height: 20px; |
| 15 padding: 2px; | 17 padding: 2px; |
| 16 background: red; | 18 background: red; |
| 17 } | 19 } |
| 18 | 20 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 cover.setAttribute("style", "background: green; " + | 125 cover.setAttribute("style", "background: green; " + |
| 124 "z-index: 10; " + | 126 "z-index: 10; " + |
| 125 "position: absolute; " + | 127 "position: absolute; " + |
| 126 "left: " + item.offsetLeft + "px; " + | 128 "left: " + item.offsetLeft + "px; " + |
| 127 "top: " + item.offsetTop + "px;"); | 129 "top: " + item.offsetTop + "px;"); |
| 128 body.appendChild(cover); | 130 body.appendChild(cover); |
| 129 } | 131 } |
| 130 </script> | 132 </script> |
| 131 </body> | 133 </body> |
| 132 </html> | 134 </html> |
| OLD | NEW |