538267-1.html (289B)
1 <html> 2 <head> 3 <style> 4 div:first-letter { float: left; } 5 div { column-count: 2; width: 0; } 6 </style> 7 <script> 8 function boom() 9 { 10 var v = document.getElementById("v"); 11 v.firstChild.remove(); 12 } 13 </script> 14 </head> 15 <body onload="boom();"> 16 <div id="v">a b<span>c</span></div> 17 </body> 18 </html>