1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<!DOCTYPE html> <style> #columns { font-size: 20px; line-height: 50px; columns: 2; column-fill: auto; width: 200px; height: 100px; margin-left: 50px; } #li { display: list-item; } </style> <div id="columns"> <div style="height: 100px">Normal</div> <div id="li"> <div>List item</div> </div> </div>