CSS List-Style Property

CSS 1

CSS 2

CSS 3

Yes Yes Yes

Description

Specifies the list properties. Used as a type of shortcut, instead of listing each property separately.

Syntax

list-style: [value1] [value2] ...

Possible values

  • [list-style-type]
  • [list-style-position]
  • [list-style-image]
  • inherit

Initial Value

Not Defined

Applies To

List item elements

Inherited

Yes

Media

Visual

Example

ul {list-style: disc;}

ul {square outside url(img/bullet.gif);}


View All CSS Properties