blob: ff4d962cebfa1850c92cce485b03615898780a79 (
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
|
---
title: ':-moz-tree-row'
slug: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row'
tags:
- CSS
- CSS Reference
- Non-standard
translation_of: 'Mozilla/Gecko/Chrome/CSS/::-moz-tree-row'
---
<p>{{CSSRef}}{{Non-standard_header}}</p>
<p><code>-moz-tree-row</code> CSS <a href="/ja/docs/Web/CSS/Pseudo-elements">擬似要素</a>は、列の選択と tree 列のスタイル付けに使用されます。</p>
<h2 id="Associated_Elements" name="Associated_Elements">関連付けられた要素</h2>
<ul>
<li>{{XULElem("treerow")}}</li>
</ul>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">treechildren::-moz-tree-row { <em>style プロパティ</em> }
</pre>
<h2 id="Style_Properties" name="Style_Properties">Style プロパティ</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="Examples" name="Examples">例</h2>
<pre class="brush:css">treechildren::-moz-tree-row( foo bar )
{
margin: 2%;
}
</pre>
<p>...次の位置に適用されます...</p>
<pre class="brush:html"> <treerow properties="foo">...</treerow>
</pre>
|