1346454-1.html (414B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 6 <style> 7 ol { 8 list-style-position: inside; 9 column-width: calc(0px); 10 } 11 li { 12 float: left; 13 } 14 li:last-child { 15 padding-block-end: calc(50%); 16 float: none; 17 } 18 </style> 19 20 <script> 21 function boom(){ 22 document.getElementById("tgt").style.display = "block"; 23 } 24 </script> 25 </head> 26 27 <body onload=boom()> 28 <ol> 29 <li id=tgt></li> 30 <li></li> 31 <li></li> 32 </ol> 33 </body> 34 </html>