blob: 3613692e0597eb30abad989ee96127a411b2a23f (
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
|
---
title: ':-moz-last-node'
slug: 'Web/CSS/:-moz-last-node'
tags:
- CSS
- CSS Reference
- Non-standard
translation_of: 'Web/CSS/:-moz-last-node'
---
<div>{{Non-standard_header}}{{CSSRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p><code>:-moz-last-node</code> <a href="/ja/docs/Web/CSS">CSS</a> <a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>は、ある要素の最後の子ノードの要素に一致します。最後の子要素の後に (スペースではない) テキストがあると一致しないため、{{ Cssxref(":last-child") }} とは動作が異なります。</p>
<p class="note">要素の末尾にある空白文字は <code>:-moz-last-node</code> の決定において無視されます。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">span:-moz-last-node { <em>style プロパティ</em> }
</pre>
<h2 id="Example" name="Example">例</h2>
<h3 id="CSS">CSS</h3>
<pre class="brush:css">span:-moz-last-node {
background-color: lime;
}
</pre>
<h3 id="HTML">HTML</h3>
<pre class="brush:html"><div>
<span>:-moz-first-node</span>
<span>:-moz-last-node</span>
</div>
</pre>
<p>{{EmbedLiveSample("Example", "220", "20")}}</p>
<h2 id="参照">参照</h2>
<ul>
<li>{{cssxref(":-moz-first-node")}}</li>
<li>{{cssxref(":last-child")}}</li>
</ul>
|