Ga naar hoofdinhoud

lijsten

list-style-type​

ul.a {
list-style-type: circle;}
ul.b {
list-style-type: square;}
ol.c {
list-style-type: upper-roman;}
ol.d {
list-style-type: lower-alpha;}

ul (= unordered list): none | disc (= standaard-waarde) | circle | square;
**ol **(= ordered list): decimal (1 2 3) | decimal-leading-zero (01 02 03) | lower-alpha (a b c) | upper-alpha (A B C) | lower-roman (i. ii. iii.) | upper-roman (I II III)

list-style​

nav ul {
list-style: none;}

list-style is de verkorte schrijfwijze (shorthand). Je gebruikt het vaak met de waarde none om de opsommingstekens van een lijst te verwijderen, bijvoorbeeld bij een navigatiemenu.