Extensible HyperText Markup Language

XHTML.com recommends: PSD to HTML Slicing Service and PSD to HTML by W3 Markup. see your link here

list-style-type

Definition

The list-style-type property specifies the style of bullets or numbers used as list item markers. The screen shot below shows several lists with different styles applied to each list.

Screen shot of a Web browser showing 3 lists. The first list has decimal list markers. The second list has lowercase latin characters as list markers. The third list has lowercase roman numerals as list markers.

Example

  1. ol {list-style-type: lower-roman}

Characteristics

Possible values

disc
Disk-shaped glyph. Exact rendering may vary between Web browsers.
circle
Circle-shaped glyph. Exact rendering may vary between Web browsers.
square
Square-shaped glyph. Exact rendering may vary between Web browsers.
decimal
Decimal numbers, beginning at 1.
decimal-leading-zero
Decimal numbers padded by initial zeros (e.g., 01, 02, 03, ..., 98, 99).
lower-roman
Lowercase roman numerals (i, ii, iii, iv, v, etc.).
upper-roman
Uppercase roman numerals (I, II, III, IV, V, etc.).
lower-greek
Lowercase classical Greek alpha, beta, gamma, ... (α, β, γ, ...).
lower-latin
Lowercase ASCII letters (a, b, c, ... z).
upper-latin
Uppercase ASCII letters (A, B, C, ... Z).
armenian
Traditional Armenian numbering.
georgian
Traditional Georgian numbering (an, ban, gan, ..., he, tan, in, in-an, ...).
lower-alpha
Lowercase ASCII letters (a, b, c, ... z).
upper-alpha
Uppercase ASCII letters (A, B, C, ... Z).
none
No list item marker.
inherit
Use the same computed value as the parent element for this property.

Default value

disc

Applies to

Inherited

Yes

See also