| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 div { border:5px solid maroon; -webkit-column-count:2; width:750px; margin: 1em
0 } | 4 div { border:5px solid maroon; -webkit-column-count:2; width:750px; margin: 1em
0 } |
| 5 span.nested { display:block; background-color: black; color:white; margin:1em 0
} | 5 span.nested { display:block; background-color: black; color:white; margin:1em 0
} |
| 6 span.nested:hover { background-color:#404040 } | 6 span.nested:hover { background-color:#404040 } |
| 7 h2 { -webkit-column-span: all; background-color:#eeeeee; color:black } | 7 h2 { -webkit-column-span: all; background-color:#eeeeee; color:black } |
| 8 </style> | 8 </style> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 </p> | 70 </p> |
| 71 </div> | 71 </div> |
| 72 | 72 |
| 73 <script> | 73 <script> |
| 74 var three = document.getElementById('three'); | 74 var three = document.getElementById('three'); |
| 75 three.insertBefore(document.getElementById('base').cloneNode(true), document.get
ElementById('before')); | 75 three.insertBefore(document.getElementById('base').cloneNode(true), document.get
ElementById('before')); |
| 76 </script> | 76 </script> |
| 77 | 77 |
| 78 </body> | 78 </body> |
| 79 </html> | 79 </html> |
| OLD | NEW |