d
Amit DhamuSoftware Engineer
 

Available List Style Types

1 minute read 00000 views
ul,
ol {
  list-style-type: none; /* no list marker */
  list-style-type: disc; /* filled circles */
  list-style-type: square; /* square markers */
  list-style-type: circle; /* circle markers */
  list-style-type: inherit; /* inherits style */
  list-style-type: decimal; /* number markers */
  list-style-type: decimal-leading-zero; /* 01, 02, 03, .. */
  list-style-type: lower-alpha; /* a, b, c, d, .. */
  list-style-type: lower-latin; /* a, b, c, d, .. */
  list-style-type: lower-greek; /* alpha, beta .. */
  list-style-type: lower-roman; /* i, ii, iii, .. */
  list-style-type: upper-alpha; /* A, B, C, D, .. */
  list-style-type: upper-latin; /* A, B, C, D, .. */
  list-style-type: upper-roman; /* I, II, III, .. */
}

Credits