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