CSS3 свойство list-style-type указывает тип списка
/* синтаксис
list-style-type: circle | disc | square | armenian | decimal |
decimal-leading-zero | georgian | lower-alpha | lower-greek | lower-latin |
lower-roman | upper-alpha | upper-latin | upper-roman | none | inherit */
ul { /* греческий алфавит строчный (α, β, γ, ...) */
list-style-type: lower-greek;
}
ul { /* отобразить без маркера */
list-style-type: none;
}
ul { /* наследует значение от родителя */
list-style-type: inherit;
}