Glubase - share your knowledge


All / Computers / Programming / CSS





  • View Command

CSS Reference

CSS list-style-position definition

Browser support
IEFFOpSaf

Type:

Syntax

list-style-position: outside | inside;

Description

Defines the indendation of list.

Value Description
inside Indents the list item marker and text (approximately by 1.5em).
outside Default.

Example

[Try this example yourself]
<ul>
<li style="list-style-position: inside;">Inside</li>
</ul>
<ul>
<li style="list-style-position: outside;">Outside</li>
</ul>

Output

  • Inside
  • Outside
  • Comments

No comments added.