案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<ol>
5
  <li>Coffee</li>
6
  <li type="a">Tea</li>
7
  <li>Milk</li>
8
</ol>
9
<ul>
10
  <li>Coffee</li>
11
  <li type="square">Tea</li>
12
  <li>Milk</li>
13
</ul>
14
15
<p>在 HTML 4.01 中,不赞成 type 属性;在 XHTML 1.0 Strict DTD 中,不支持 type 属性。请使用 CSS 代替。</p>
16
17
</body>
18
</html>
19