Home → References → CSS Properties →
CSS Property: list-style-type
Specifies the style of the list marker bullet or numbering system within a list.
HTML Dog is hosted by Titan Internet
Possible Values
inheritnone- no list marker.disc- solid circle.circle- empty circle.square- solid square.decimal- 1, 2, 3, 4 etc.decimal-leading-zero- 01, 02, 03 ... 10, 11 etc. Not supported by IE.lower-roman- i, ii, iii, iv etc.upper-roman- I, II, III, IV etc.lower-greek- Greek characters. Not supported by IE.lower-latin- a, b, c, d etc. Not supported by IE.upper-latin- A, B, C, D etc. Not supported by IE.armeniangeorgian
Example
ul { list-style-type: square; }

