日期:2013-05-07 浏览次数:20990 次
这一节独一我们将要讨论的是如何用 CSS 来改变列表
前的标识。我们知道有两种列表:有序和无序。有序
列表用阿拉伯数字为标识, 无序列表用黑色小圆圈来
做标识。用 CSS 的 list-style-type 这两种列表的标
识都可以有四种选择:
无序: disc, circle, square, decimal
有序: upper-roman, lower-roman, upper-alpha, lower-alpha.
假如你想叫有序列表的标识为大小罗马字母
- LI.upperroman {list-style-type: upper-roman}
- <STYLE>
- LI.upperroman {list-style-type: upper-roman}
- LI.lowerroman {list-style-type: lower-roman}
- LI.upperalpha {list-style-type: upper-alpha}
- LI.loweralpha {list-style-type: lower-alpha}
- LI.disc {list-style-type: disc}
- LI.circle {list-style-type: circle}
- LI.decimal {list-style-type: decimal}
- LI.square {list-style-type: square}
- </STYLE>