aboutsummaryrefslogtreecommitdiffstats
path: root/test/render/test8.htm
blob: 8d68ac85529d762d46ff8222ed6c677ffe55dc1a (plain)
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
<style type="text/css">
	div
	{
	    display: block;
	    list-style-type: decimal;
	    margin-top: 1em;
	    margin-bottom: 1em;
	    margin-left: 0;
	    margin-right: 0;
	    padding-left: 40px
	}
	span
	{
    	display: list-item;
	}
</style>
<ul>
	<li>Item1</li>
	<li>Item2</li>
	<li>Item3</li>
</ul>
<ol>
	<li>Item1</li>
	<li>Item2</li>
	<li>Item3</li>
</ol>
<div>
	<span>Item1</span>
	<span>Item2</span>
	<strong>hello</strong>
	<span>Item3</span>
</div>