out-of-flow-in-multicolumn-093-ref.html (338B)
1 <!DOCTYPE html> 2 <style> 3 ul { columns:1; height:20px; width:100px; line-height:20px; } 4 ul li { position:relative; list-style-type:none; font-size:20px; } 5 ul li::before { content:" \2022 "; position:absolute; top:0; left:-15px; } 6 </style> 7 <p>There should be a bullet to the left of the word "Bullet".</p> 8 <ul> 9 <li>Bullet</li> 10 </ul>