目录

CSS list-style 属性


示例

在一个声明中指定所有列表属性:

ul {
  list-style: square inside url("sqpurple.gif");
}
亲自试一试 »

定义和用法

这个list-styleproperty 是以下属性的简写:

如果缺少其中一个值,则将使用该属性的默认值。

展示演示❯

默认值: 盘外无
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS1
JavaScript 语法: 对象.style.listStyle="decimal inside"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
list-style 1.0 4.0 1.0 1.0 7.0


CSS 语法

list-style: list-style-type list-style-position list-style-image|initial|inherit;

属性值

Value Description Demo
list-style-type Specifies the type of list-item marker. Default value is "disc" Demo ❯
list-style-position Specifies where to place the list-item marker. Default value is "outside" Demo ❯
list-style-image Specifies the type of list-item marker. Default value is "none" Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 列表

HTML DOM 参考:listStyle 属性