| OLD | NEW | 
|---|
| 1 <html> | 1 <html> | 
| 2 <head> | 2 <head> | 
| 3 <style> | 3 <style> | 
| 4 .container { display:inline-block; width:220px; } | 4 .container { display:inline-block; width:220px; } | 
| 5 .multicol { -moz-column-width:100px; -webkit-column-width:100px; height:300px; b
    order:5px solid black; -webkit-column-gap: 10px; -moz-column-gap: 10px } | 5 .multicol { -moz-column-width:100px; -moz-column-gap:10px; -webkit-column-width:
    100px; -webkit-column-gap:10px; column-width:100px; column-gap:10px; column-fill
    :auto; height:300px; border:5px solid black; } | 
| 6 .block { width:100px; height:100px } | 6 .block { width:100px; height:100px } | 
| 7 .block:hover { background-color: maroon !important; } | 7 .block:hover { background-color: maroon !important; } | 
| 8 .layer { height:400px; width:100px } | 8 .layer { height:400px; width:100px } | 
| 9 .line2 { position: absolute; top: 343px; left: 8px; } | 9 .line2 { position: absolute; top: 343px; left: 8px; } | 
| 10 </style> | 10 </style> | 
| 11 <body> | 11 <body> | 
| 12 | 12 | 
| 13 <div class="container"> | 13 <div class="container"> | 
| 14 Overflow: | 14 Overflow: | 
| 15 <div class="multicol"> | 15 <div class="multicol"> | 
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 61 <div class="block" style="display:inline-block; background-color:black"></div> | 61 <div class="block" style="display:inline-block; background-color:black"></div> | 
| 62 <div style="opacity:0.99;" class="layer"> | 62 <div style="opacity:0.99;" class="layer"> | 
| 63 <div class="block" style="background-color: #0000f0"></div> | 63 <div class="block" style="background-color: #0000f0"></div> | 
| 64 <div class="block" style="background-color: #0000d0"></div> | 64 <div class="block" style="background-color: #0000d0"></div> | 
| 65 <div class="block" style="background-color: #0000b0"></div> | 65 <div class="block" style="background-color: #0000b0"></div> | 
| 66 <div class="block" style="background-color: #000090"></div> | 66 <div class="block" style="background-color: #000090"></div> | 
| 67 </div> | 67 </div> | 
| 68 <div class="block" style="display:inline-block; background-color:black"></div> | 68 <div class="block" style="display:inline-block; background-color:black"></div> | 
| 69 </div> | 69 </div> | 
| 70 </div> | 70 </div> | 
| OLD | NEW | 
|---|