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-image

list-style-image: none (= standaardwaarde) | url;

list-style-position

list-style-position: outside (= standaard-waarde) | inside;

outside: De markering bevindt zich links van de blok tekst. Indien de list-style-position niet uitdrukkelijk vermeld wordt, is dit de standaard weergave. inside: De marker zit vervat binnenin het tekstkader zelf.

list-style

Bij list-style kunne zowel list-style-type, list-style-position en list-style-image benoemd worden.

Last updated