list-style-position-applies-to-ref-1.html (370B)
1 <!DOCTYPE html> 2 <title>CSS Reference</title> 3 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com"> 4 <style> 5 div { 6 display: inline-block; 7 } 8 span { 9 background: orange; 10 display: list-item; 11 list-style-position: inside; 12 margin-left: 1in; 13 } 14 </style> 15 16 <p>Test passes if there is a black dot inside an orange box below.</p> 17 <div><span></span></div>