aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/css/_colon_-moz-tree-row/index.html
blob: b334d502f934a9e137cecdd3e754ba207eb93494 (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
---
title: ':-moz-tree-row'
slug: 'Web/CSS/:-moz-tree-row'
tags:
  - CSS
  - No estandar
  - Referencia CSS
translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row'
---
<p>{{CSSRef}}{{Non-standard_header}}</p>

<h2 id="Resumen">Resumen</h2>

<p>El  <a href="/es/docs/Web/CSS/Pseudo-elements">pseudo-elemento</a><code>::-moz-tree-row</code> CSS  se usa para seleccionar filas y para aplicar estilos a las filas de los árboles.</p>

<h2 id="Elementos_asociados">Elementos asociados</h2>

<ul>
 <li>{{XULElem("treerow")}}</li>
</ul>

<h2 id="Síntaxis">Síntaxis</h2>

<pre class="syntaxbox">treechildren::-moz-tree-row {<em>propiedades de estilo</em> }
</pre>

<h2 id="Propiedades_de_estilo">Propiedades de estilo</h2>

<ul>
 <li>{{cssxref("background")}}</li>
 <li>{{cssxref("border")}}</li>
 <li>{{cssxref("margin")}}</li>
 <li>{{cssxref("outline")}}</li>
 <li>{{cssxref("padding")}}</li>
 <li>{{cssxref("display")}}</li>
 <li>{{cssxref("-moz-appearance")}}</li>
</ul>

<h2 id="Ejemplos">Ejemplos</h2>

<pre class="brush:css">treechildren::-moz-tree-row( foo bar )
{
    margin: 2%;
}
</pre>

<p>...donde...</p>

<pre class="brush:html">  &lt;treerow properties="foo"&gt;...&lt;/treerow&gt;
</pre>