Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
body {
/* Increase left margin to ensure we can see the list item's marker. */
margin-left: 50px;
}
.wrapper {
border: 2px solid teal;
width: max-content;
margin-bottom: 2px;
}
</style>
<div class="wrapper">
<li style="list-style-position: inside">unspecified</li>
<li style="list-style-position: outside">outside</li>
<li style="list-style-position: outside">initial</li>
<li style="list-style-position: outside">inherit</li>
<li style="list-style-position: outside">unset</li>
<li style="list-style-position: inside">revert</li>
<li style="list-style-position: inside">revert-layer</li>
</div>