--- 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>