aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/css/_colon_-moz-list-bullet/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/css/_colon_-moz-list-bullet/index.html')
-rw-r--r--files/es/web/css/_colon_-moz-list-bullet/index.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/files/es/web/css/_colon_-moz-list-bullet/index.html b/files/es/web/css/_colon_-moz-list-bullet/index.html
new file mode 100644
index 0000000000..07415595a9
--- /dev/null
+++ b/files/es/web/css/_colon_-moz-list-bullet/index.html
@@ -0,0 +1,46 @@
+---
+title: '::-moz-list-bullet'
+slug: 'Web/CSS/:-moz-list-bullet'
+tags:
+ - CSS
+ - NeedsCompatTable
+ - No estandar
+ - Referencia CSS
+translation_of: 'Web/CSS/:-moz-list-bullet'
+---
+<div>{{Non-standard_header}}{{CSSRef}}</div>
+
+<h2 id="Resumen">Resumen</h2>
+
+<p>El  <a href="/es/docs/Web/CSS/Pseudo-elements">pseudo-elemento </a><a href="/es/docs/Web/CSS">CSS </a>no-estándar <code>de Mozilla ::-moz-list-bullet</code>  se usa para establecer el estilo para los iconos que preceden a los elemento de una lista.</p>
+
+<h2 id="Síntaxis">Síntaxis</h2>
+
+<pre class="syntaxbox">li::-moz-list-bullet { <em>propiedades del estilo</em> }</pre>
+
+<h2 id="Ejemplo">Ejemplo</h2>
+
+<h3 id="HTML">HTML</h3>
+
+<pre class="brush: html">&lt;ul&gt;
+ &lt;li&gt;Number 1&lt;/li&gt;
+ &lt;li&gt;Number 2&lt;/li&gt;
+ &lt;li&gt;Number 3&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;ul class="list"&gt;
+ &lt;li&gt;Number 1&lt;/li&gt;
+ &lt;li&gt;Number 2&lt;/li&gt;
+ &lt;li&gt;Number 3&lt;/li&gt;
+&lt;/ul&gt;
+</pre>
+
+<h3 id="CSS">CSS</h3>
+
+<pre class="brush: css">.list ::-moz-list-bullet { font-size: 36px; }</pre>
+
+<h3 id="Resultado">Resultado</h3>
+
+<p>{{ EmbedLiveSample('Example', '', '', '', 'Web/CSS/:-moz-list-bullet') }}</p>
+
+<p> </p>