list-style-position
Quick Summary for list-style-position
The list-style-position CSS property sets the position of the ::marker relative to a list item.
Code Usage for list-style-position
/* 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: unset; 
More Details for list-style-position

list-style-position

The list-style-position CSS property sets the position of the ::marker relative to a list item.

It is often more convenient to use the shorthand list-style.

Note: This property is applied to list items, i.e., elements with display: list-item;. By default this includes <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.

Note that there is variance among browsers regarding behavior when a block element is placed first within a list element declared as list-style-position: inside. Chrome and Safari both place this element on the same line as the marker box, whereas Firefox, Internet Explorer, and Opera place it on the next line. For more information on this, see bug 36854.

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: 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.

Formal definition

Initial valueoutside
Applies tolist items
Inheritedyes
Computed valueas specified
Animation typediscrete

Formal syntax

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("starsolid.gif"); } 
Result

Specifications

Specification
CSS Lists and Counters Module Level 3 # list-style-position-property

See also

list-style, list-style-type, list-style-image

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)DeutschEspañolFrançais日本語Polski中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
When i was a little kid, I was really scared of the dark. But then I came to understand, dark just means the absence of photons in the visible wavelength -- 400 to 700 nanometers. Then i thought, well, its really silly to be afraid of a lack of photons. Then i wasn't afraid of the dark anymore after that.
Elon Musk
Random CSS Property

scroll-padding-left

The scroll-padding-left property defines offsets for the left of the optimal viewing region of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
scroll-padding-left css reference