Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d8cb7ba4beb3c2c05e09c5ff6dfba3b94830d066 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
root {
	display: block;
}

ul {
	display: block;
	list-style-type: disc;
}

ul ul {
	list-style-type: square;
}

ul ul ul {
	list-style-type: circle;
}

ol {
	display: block;
	list-item-style: decimal;
}

ol ol {
  list-style-type: lower-alpha;
}

ol ol ol {
  list-style-type: lower-roman;
}

li {
  display: list-item;
}

Back to the top