以下是 list-style-type 属性的基本语法:
selector {
list-style-type: disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-alpha | upper-alpha | none;
}
- disc: 默认值,实心圆点。
- circle: 空心圆点。
- square: 实心方块。
- decimal: 十进制数字(1, 2, 3,...)。
- decimal-leading-zero: 带有前导零的十进制数字(01, 02, 03,...)。
- lower-roman: 小写罗马数字(i, ii, iii,...)。
- upper-roman: 大写罗马数字(I, II, III,...)。
- lower-alpha: 小写字母标记(a, b, c,...)。
- upper-alpha: 大写字母标记(A, B, C,...)。
- none: 无标记。
示例:
ul {
list-style-type: square; /* 使用实心方块作为列表项标记 */
}
ol {
list-style-type: upper-roman; /* 使用大写罗马数字作为有序列表项标记 */
}
在这个例子中,ul 元素的列表项使用实心方块作为标记,而 ol 元素的列表项使用大写罗马数字。
转载请注明出处:http://www.zyzy.cn/article/detail/4209/CSS