docs.rodeo

MDN Web Docs mirror

list-style

{{CSSRef}} 

The list-style CSS shorthand property allows you to set all the list style properties at once.

{{InteractiveExample("CSS Demo: list-style")}} 

list-style: square;
list-style: inside;
list-style: url("/shared-assets/images/examples/rocket.svg");
list-style: none;
list-style: georgian inside url("/shared-assets/images/examples/rocket.svg");
list-style: georgian outside url("/non-existent.svg");
<section class="default-example" id="default-example">
  <div>
    <p>NASA Notable Missions</p>
    <ul class="transition-all" id="example-element">
      <li>Apollo</li>
      <li>Hubble</li>
      <li>Chandra</li>
      <li>Cassini-Huygens</li>
      <li>Spitzer</li>
    </ul>
  </div>
</section>
.default-example {
  font-size: 1.2rem;
}

#example-element {
  width: 100%;
  background: #be094b;
  color: white;
}

section {
  text-align: left;
  flex-direction: column;
}

hr {
  width: 50%;
  color: lightgray;
  margin: 0.5em;
}

.note {
  font-size: 0.8rem;
}

.note a {
  color: #009e5f;
}

@counter-style space-counter {
  symbols: "\1F680" "\1F6F8" "\1F6F0" "\1F52D";
  suffix: " ";
}

The values of this property are applied to list items, including {{HTMLElement("li")}}  elements and elements with ``{{cssxref(“display”)}}&nbsp;: list-item;. Because this property is inherited, it can be set on a parent element (normally {{HTMLElement("ol")}}  or {{HTMLElement("ul")}} ) to make the same list styling apply to all the nested items.

Constituent properties

This property is a shorthand for the following CSS properties:

Syntax

/* type */
list-style: square;

/* image */
list-style: url("../img/shape.png");

/* position */
list-style: inside;

/* two values */
list-style: georgian outside;
list-style: url("img/pip.svg") inside;

/* three values */
list-style: lower-roman url("img/shape.png") outside;

/* Keyword value */
list-style: none;

/* Global values */
list-style: inherit;
list-style: initial;
list-style: revert;
list-style: revert-layer;
list-style: unset;

The list-style property is specified as one, two, or three values in any order. If {{cssxref("list-style-type")}}  and {{cssxref("list-style-image")}}  are both set, the list-style-type is used as a fallback if the image is unavailable.

Values

Formal definition

{{cssinfo}} 

Formal syntax

{{csssyntax}} 

Accessibility

Safari does not recognize ordered or unordered lists as lists in the accessibility tree if they have a list-style value of none, unless the list is nested within the {{HTMLElement("nav")}}  navigation element. This behavior is intentional and is not considered a bug.

To ensure lists are announced as lists, include role="list" to {{HTMLElement("ol")}}  and {{HTMLElement("ul")}}  elements, especially if the list is not nested in a <nav>. This restores list semantics without affecting the design:

<ul role="list">
  <li>An item</li>
  <li>Another item</li>
</ul>

If an ARIA role is not an option for your code, CSS can be used instead. Adding non-empty pseudo-content such as text or images before each list item can restore list semantics, but impacts the visual appearance. Safari determines if the added pseudo-content suffices as accessible content, restoring list semantics if so. Generally, Safari considers text and images as sufficient, which is why the content: "+ "; shown below works (but requires additional styling to not affect the design).

ul {
  list-style: none;
}

ul li::before {
  content: "+ ";
}

A declaration of content: ""; (an empty string) is ignored, as are content values that contain only spaces, such as content: " ";.

These CSS workarounds should only be used when an HTML solution is unavailable, and only after testing to ensure that they don’t result in unexpected behaviors that may negatively impact user experience.

Examples

Setting list style type and position

HTML

List 1
<ul class="one">
  <li>List Item1</li>
  <li>List Item2</li>
  <li>List Item3</li>
</ul>
List 2
<ul class="two">
  <li>List Item A</li>
  <li>List Item B</li>
  <li>List Item C</li>
</ul>

CSS

.one {
  list-style: circle;
}

.two {
  list-style: square inside;
}

Result

{{EmbedLiveSample('Setting_list_style_type_and_position', 'auto', 240)}} 

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN