--- 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
说明没有图片被用作标记。如果这个值被设定,那么 {{ Cssxref("list-style-type") }} 中定义的值会被取代。

正式语法

{{csssyntax}}

举例

HTML

<ul>
    <li>Item 1</li>
    <li>Item 2</li>
</ul>

CSS

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

其他链接