From http://www.w3schools.com (Copyright Refsnes Data)

CSS list-style-position Property

CSS Reference Complete CSS Reference

Example

Specify the position of the list-item marker in a list:

ul
{
list-style-position:inside;
}

Try it yourself »

Definition and Usage

The list-style-type specifies where to place the list-item marker in a list.

Default value: outside
Inherited: yes
Version: CSS1
JavaScript syntax: object.style.listStylePosition="inside"


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The list-style-position property is supported in all major browsers.

Note: No versions of Internet Explorer (including IE8) support the property value "inherit".


Property Values

Value Description
inside Indents the marker and the text
outside Keeps the marker to the left of the text. This is default
inherit Specifies that the value of the list-style-position property should be inherited from the parent element


Related Pages

CSS tutorial: CSS List

CSS reference: list-style property

HTML DOM reference: listStylePosition property


CSS Reference Complete CSS Reference

From http://www.w3schools.com (Copyright Refsnes Data)