--- title: list-style slug: Web/CSS/list-style translation_of: Web/CSS/list-style ---
list-style
CSS 属性是一个简写对属性集合,包括{{cssxref("list-style-type")}}, {{cssxref("list-style-image")}}, 和 {{cssxref("list-style-position")}}。CSS list-style 属性是设置{{cssxref("list-style-type")}}, {{cssxref("list-style-image")}} 和 {{cssxref("list-style-position")}} 的简写属性。
{{cssinfo}}
Formal syntax: {{csssyntax("list-style")}}
以任何顺序接受一个,二个或者三个关键词
<'list-style-type'>
<'list-style-image'>
<'list-style-position'>
List 1 <ul class="one"> <li>List Item1</li> <li>List Item2</li> <li>List Item3</li> </ul> List 2 <ul class="two"> <li>List Item A</li> <li>List Item B</li> <li>List Item C</li> </ul>
.one { list-style: circle; } .two { list-style: square inside; }
{{EmbedLiveSample('示例')}}
规范 | 状态 | 注释 |
---|---|---|
{{SpecName('CSS3 Lists', '#list-style', 'list-style')}} | {{Spec2('CSS3 Lists')}} | 没有改变 |
{{SpecName('CSS2.1', 'generate.html#propdef-list-style', 'list-style')}} | {{Spec2('CSS2.1')}} | 初始定义 |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1.0 | {{CompatGeckoDesktop("1")}} | 4.0 | 7.0 | 1.0 |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 1.0 | {{CompatGeckoMobile("1")}} | 6.0 | 6.0 | 1.0 |