From http://www.w3schools.com (Copyright Refsnes Data)
ExampleSpecify the position of the list-item marker in a list:
Try it yourself » |
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" |
![]()
The list-style-position property is supported in all major browsers.
Note: No versions of Internet Explorer (including IE8) support the property value "inherit".
| 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 |
CSS tutorial: CSS List
CSS reference: list-style property
HTML DOM reference: listStylePosition property
Complete CSS Reference
From http://www.w3schools.com (Copyright Refsnes Data)