blob: 6fd4596d0be7c1793159466c533999eaaf027c73 (
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
|
---
title: ':-moz-tree-row'
slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row'
tags:
- CSS
- Non-standard
- Pseudo-classe
- Reference
translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row'
---
<div>{{CSSRef}}{{Non-standard_header}}</div>
<p>La pseudo-classe <strong><code>-moz-tree-row</code></strong> est utilisée afin de sélectionner des lignes d'un arbre pour leur appliquer des styles</p>
<h2 id="Éléments_XUL_associés">Éléments XUL associés</h2>
<ul>
<li>{{XULElem("treerow")}}</li>
</ul>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">treechildren::-moz-tree-row { <em>propriétés de style </em>}
</pre>
<h2 id="Propriétés_associées">Propriétés associées</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="Exemples">Exemples</h2>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">treechildren::-moz-tree-row( toto bar )
{
margin: 2%;
}
</pre>
<h3 id="XUL">XUL</h3>
<pre class="brush: xml"><treerow properties="toto">…</treerow>
</pre>
<h2 id="Spécifications">Spécifications</h2>
<p>Cette pseudo-classe est une pseudo-classe propriétaire liée à Gecko/Mozilla et ne fait partie d'aucune spécification.</p>
|