The list-style-position
CSS property sets the position of the ::marker
relative to a list item.
list-style-position
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Try it
Syntax
/* Keyword values */ list-style-position: inside; list-style-position: outside; /* Global values */ list-style-position: inherit; list-style-position: initial; list-style-position: revert; list-style-position: revert-layer; list-style-position: unset;
The list-style-position
property is specified as one of the keyword values listed below.
Values
inside
-
The
::marker
is the first element among the list item's contents. outside
-
The
::marker
is outside the principal block box. This is the default value forlist-style
.
Description
This property is applied to list items, i.e., elements with
. By default this includes display
: list-item;<li>
elements. Because this property is inherited, it can be set on the parent element (normally <ol>
or <ul>
) to let it apply to all list items.
If a block element is the first child of a list element declared as list-style-position: inside
, then the block element is placed on the line after the marker-box.
It is often more convenient to use the shorthand list-style
.
Formal definition
Initial value | outside |
---|---|
Applies to | list items |
Inherited | yes |
Computed value | as specified |
Animation type | discrete |
Formal syntax
list-style-position =
inside |
outside
Examples
Setting list item position
HTML
<ul class="inside"> List 1 <li>List Item 1-1</li> <li>List Item 1-2</li> <li>List Item 1-3</li> <li>List Item 1-4</li> </ul> <ul class="outside"> List 2 <li>List Item 2-1</li> <li>List Item 2-2</li> <li>List Item 2-3</li> <li>List Item 2-4</li> </ul> <ul class="inside-img"> List 3 <li>List Item 3-1</li> <li>List Item 3-2</li> <li>List Item 3-3</li> <li>List Item 3-4</li> </ul>
CSS
.inside { list-style-position: inside; list-style-type: square; } .outside { list-style-position: outside; list-style-type: circle; } .inside-img { list-style-position: inside; list-style-image: url("star-solid.gif"); }
Result
Specifications
Browser compatibility
Desktop | Mobile | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | |
list-style-position |
1 | 12 | 1 | 3.5 | 1In Safari, if a block element is the first child of a list element declared aslist-style-position: inside , then the marker box is placed on the same line as the block element. |
18 | 4 | 14 | 1In Safari, if a block element is the first child of a list element declared aslist-style-position: inside , then the marker box is placed on the same line as the block element. |
1.0 | 4.4 |
inside |
1 | 12 | 1 | 15 | 1 | 18 | 4 | 14 | 1 | 1.0 | 4.4 |
outside |
1 | 12 | 1 | 15 | 1 | 18 | 4 | 14 | 1 | 1.0 | 4.4 |
See also
-
list-style
shorthand -
list-style-type
property -
list-style-image
property -
::marker
pseudo-element - CSS lists and counters module
- CSS counter styles module
© 2005–2024 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-position