HTML 参考手册
HTML <li> type 属性
在有序列表和无序列表中使用 type 属性
源代码:
点击运行 »
<ol> <li>Coffee</li> <li type="a">Tea</li> <li>Milk</li> </ol> <ul> <li>Coffee</li> <li type="square">Tea</li> <li>Milk</li> </ul>
运行结果:
点击运行 »