type 属性可以接受以下值:
- "1": 阿拉伯数字(默认值)。
- "A": 大写字母("A", "B", "C" 等)。
- "a": 小写字母("a", "b", "c" 等)。
- "I": 大写罗马数字("I", "II", "III" 等)。
- "i": 小写罗马数字("i", "ii", "iii" 等)。
以下是一个示例,演示了如何使用 type 属性:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ordered List with Type Attribute</title>
</head>
<body>
<h2>Ordered List with Type Attribute</h2>
<ol type="A">
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
</ol>
</body>
</html>
在这个例子中,<ol type="A"> 创建了一个使用大写字母计数的有序列表。可以根据需要选择不同的计数类型,以使列表的外观符合设计要求。
转载请注明出处:http://www.zyzy.cn/article/detail/3957/HTML