HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

list-style-position

Description

The list-style-position property for CSS 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

Examples

1 · inside

2 · outside

3 · JS