list-style-position-quirks-mode.html (787B)
1 <!-- quirks mode --> 2 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#lists"> 3 <link rel="match" href="list-style-position-quirks-mode-ref.html"> 4 <style> 5 body { 6 /* Increase left margin to ensure we can see the list item's marker. */ 7 margin-left: 50px; 8 } 9 .wrapper { 10 border: 2px solid teal; 11 width: max-content; 12 margin-bottom: 2px; 13 } 14 </style> 15 <div class="wrapper"> 16 <li>unspecified</li> 17 <li style="list-style-position: outside">outside</li> 18 <li style="list-style-position: initial">initial</li> 19 <li style="list-style-position: inherit">inherit</li> 20 <li style="list-style-position: unset">unset</li> 21 <li style="list-style-position: revert">revert</li> 22 <li style="list-style-position: revert-layer">revert-layer</li> 23 </div>