--- title: list-style-image slug: Web/CSS/list-style-image tags: - CSS列表 - CSS属性 - 参考 translation_of: Web/CSS/list-style-image ---
{{ CSSRef}}
list-style-image
属性用来指定一个能用来作为列表元素标记的图片。
通常来说使用{{ cssxref("list-style") }}较为方便。
{{cssinfo}}
/* Keyword values */ list-style-image: none; /* <url> values */ list-style-image: url('starsolid.gif'); /* Global values */ list-style-image: inherit; list-style-image: initial; list-style-image: unset;
<url>
none
<ul> <li>Item 1</li> <li>Item 2</li> </ul>
ul { list-style-image: url("https://mdn.mozillademos.org/files/11981/starsolid.gif") }
{{ EmbedLiveSample('Examples') }}
说明 | 状态 | 注释 |
---|---|---|
{{ SpecName('CSS3 Lists', '#list-style-image', 'list-style-image') }} | {{ Spec2('CSS3 Lists') }} | Extends support to any {{cssxref("<image>")}} data type. |
{{ SpecName('CSS2.1', 'generate.html#propdef-list-style-image', 'list-style-image') }} | {{ Spec2('CSS2.1') }} | Initial definition |
{{ CompatibilityTable() }}
特征 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
基本支持 | 1.0 | {{ CompatGeckoDesktop("1") }} | 4.0 | 7.0 | 1.0 |
特征 | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
基本支持 | 1.0 | {{ CompatGeckoMobile("1") }} | 6.0 | 6.0 | 1.0 |