blob: bf92a2895166e8fd2e34406a292a4cfbd1e09fc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
---
title: list-style
slug: Web/CSS/list-style
tags:
- CSS
- 'CSS:Referencias'
- Referencia_CSS
- Todas_las_Categorías
translation_of: Web/CSS/list-style
---
<p>{{ CSSRef() }}</p>
<h2 id="Resumen" name="Resumen">Resumen</h2>
<p>La propiedad de estilo de lista (<code>list-style</code>) permite definir de golpe todos los parámetros: {{ Cssxref("list-style-type") }}, {{ Cssxref("list-style-image") }}, y {{ Cssxref("list-style-position") }}.</p>
<ul>
<li>{{ Cssxref("initial", "Valor inicial") }}: ver propiedades individuales</li>
<li>Se aplica a: elementos con 'display: list-item'</li>
<li>{{ Cssxref("inheritance", "Valor heredado") }}: no</li>
<li>Porcentajes: N/A</li>
<li>Medio: {{ Cssxref("Media:Visual", "visual") }}</li>
<li>{{ Cssxref("computed value", "Valor calculado") }}: ver propiedades individuales</li>
</ul>
<h2 id="Sintaxis" name="Sintaxis">Sintaxis</h2>
<p>list-style: {{ mediawiki.external(' list-style-type || list-style-position || list-style-image ') }} | inherit</p>
<h3 id="Valores" name="Valores">Valores</h3>
<dl>
<dt>ver {{ Cssxref("list-style-type", "list-style-type") }}.</dt>
<dt>ver {{ Cssxref("list-style-image", "list-style-image") }}.</dt>
<dt>ver {{ Cssxref("list-style-position", "list-style-position") }}.</dt>
</dl>
<h2 id="Ejemplos">Ejemplos</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html">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>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">.one {
list-style: circle;
}
.two {
list-style: square inside;
}</pre>
<h3 id="Resultado">Resultado</h3>
<p>{{EmbedLiveSample('Ejemplos')}}</p>
<h2 id="Especificaciones" name="Especificaciones">Especificaciones</h2>
<ul>
<li><a class="external" href="http://www.w3.org/TR/CSS1#list-style">CSS 1 (en)</a></li>
<li><a class="external" href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style">CSS 2.1 (en)</a></li>
<li><a class="external" href="http://www.w3.org/TR/css3-lists/#list-style">css3-lists (en)</a></li>
</ul>
<h2 id="Compatibilidad_con_navegadores" name="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2>
<h3 id="Ver_tambi.C3.A9n" name="Ver_tambi.C3.A9n">Ver también</h3>
<p>{{ Cssxref("list-style-type") }}, {{ Cssxref("list-style-image") }}, {{ Cssxref("list-style-position")}}</p>
|