ul { list-style-type: disc; /* 圆点样式 */ } ol { list-style-type: decimal; /* 数字样式 */ }
在上面的代码中,大家用list-style-type
属性来定义列表标记的样式。其中,disc
表示圆点样式,decimal
表示数字样式。
除了圆点和数字样式,CSS 还提供了其他样式,下面是一些常见的样式:
ul { list-style-type: circle; /* 空心圆 */ } ol { list-style-type: lower-alpha; /* 小写字母 */ } ul { list-style-type: square; /* 实心正方形 */ } ol { list-style-type: upper-roman; /* 大写罗马数字 */ }
通过在样式表中使用不同的list-style-type
值,大家可以轻松地改变列表标记的样式。这些样式是非常有用的,可以让大家的网页更加美观和易于阅读。