1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: list-style-type</title>
5 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#list-style-type">
6 <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
7 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
8 <style type="text/css">
9 body { color: navy; }
10 .one {list-style-type: disc;}
11 .two {list-style-type: circle;}
12 .three {list-style-type: square;}
13 .nine {list-style-type: none; color: red;}
14 </style>
15 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#lists" title="12.5 Lists">
16 </head>
17 <body>
18 <p>Each bullet should look as described, and there should be no red present.</p>
19 <ul class="one">
20 <li>disc</li>
21 <li>disc</li>
22 <li>disc</li>
23 </ul>
24 <ul class="two">
25 <li>circle</li>
26 <li>circle</li>
27 <li>circle</li>
28 </ul>
29 <ul class="three">
30 <li>square</li>
31 <li>square</li>
32 <li>square</li>
33 </ul>
34 <ul class="nine">
35 <li> </li>
36 <li> </li>
37 <li> </li>
38 </ul>
39 </body>
40 </html>