LIST-STYLE-POSITION
The list-style-position property dictates whether the marker is rendered inline, or positioned just outside of the list item.
SYNTAX
CSS
list-style-position: value;
JS
object.style.listStylePosition = "value";
VALUES
<'list-style-position'> = inside | outside
inside
No special effect.
outside
If the list item is a block container, the marker box is blockified and placed outside the principal block box.
INITIAL
outside