430991.html (370B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script type="text/javascript"> 5 6 function boom() 7 { 8 var li = document.getElementById("li"); 9 li.removeChild(li.lastChild); 10 } 11 12 </script> 13 </head> 14 15 <body onload="boom();"> 16 17 <ul id="ul"> 18 <li id="li" style="column-count: -1; white-space: pre-wrap;"><span>A</span><span>B</span><span style="float: right;"></span> 19 20 </li> 21 </ul> 22 23 </body> 24 </html>