diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-04 23:16:05 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-14 23:09:59 +0900 |
commit | 1f366e7351f85a7ec5f99a1bdae2effb83bf8675 (patch) | |
tree | cea6c2f4ac9c635d915836eadc7eedcba3b0a88b /files/ja | |
parent | 9f51fad0d4f15aab22460fc9fe2a92c81572e13f (diff) | |
download | translated-content-1f366e7351f85a7ec5f99a1bdae2effb83bf8675.tar.gz translated-content-1f366e7351f85a7ec5f99a1bdae2effb83bf8675.tar.bz2 translated-content-1f366e7351f85a7ec5f99a1bdae2effb83bf8675.zip |
2021/08/27 時点の英語版に同期
Diffstat (limited to 'files/ja')
-rw-r--r-- | files/ja/web/css/_colon_nth-last-of-type/index.md | 117 |
1 files changed, 49 insertions, 68 deletions
diff --git a/files/ja/web/css/_colon_nth-last-of-type/index.md b/files/ja/web/css/_colon_nth-last-of-type/index.md index b1c64d7f60..5e0c2060e8 100644 --- a/files/ja/web/css/_colon_nth-last-of-type/index.md +++ b/files/ja/web/css/_colon_nth-last-of-type/index.md @@ -1,94 +1,75 @@ --- title: ':nth-last-of-type()' -slug: 'Web/CSS/:nth-last-of-type' +slug: Web/CSS/:nth-last-of-type tags: - CSS - - ウェブ - - セレクター - - リファレンス - レイアウト - - 疑似クラス -translation_of: 'Web/CSS/:nth-last-of-type' + - 擬似クラス + - リファレンス + - セレクター + - ウェブ +browser-compat: css.selectors.nth-last-of-type +translation_of: Web/CSS/:nth-last-of-type --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>:nth-last-of-type()</code></strong> <a href="/ja/docs/CSS/Pseudo-classes" title="Pseudo-classes">疑似クラス</a>は、兄弟要素のグループの中で指定された型の要素を、最後から数えた位置に基づいて選択します。</p> +**`:nth-last-of-type()`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)で、兄弟要素のグループの中で指定された型の要素を、最後から数えた位置に基づいて選択します。 -<pre class="brush: css no-line-numbers">/* 兄弟の <p> 要素の中で、 - 後ろから数えて3つおきに選択 */ +``` +/* 兄弟の <p> 要素の中で、 + 後ろから数えて 3 つおきに選択 */ p:nth-last-of-type(4n) { color: lime; -}</pre> +} +``` -<div class="note"> -<p><strong>メモ:</strong> この疑似クラスは、最初から後に向けてではなく<em>最後</em>から前に向けて数えるという点を除けば、本質的に {{Cssxref(":nth-of-type")}} と同じです。</p> -</div> +> **Note:** この擬似クラスは、最初から後に向けてではなく*最後*から前に向けて数えるという点を除けば、本質的に {{Cssxref(":nth-of-type")}} と同じです。 -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 -<p><code>nth-last-of-type</code> 疑似クラスは、要素を選択する最後から数えるパターンを表す引数を1つ取ります。</p> +`nth-last-of-type` 擬似クラスは、要素を選択する最後から数えるパターンを表す引数を 1 つ取ります。 -<p>構文の詳しい説明は {{Cssxref(":nth-last-child")}} を参照してください。</p> +構文の詳しい説明は {{Cssxref(":nth-last-child")}} を参照してください。 -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +### 形式文法 {{csssyntax}} -<h2 id="Example" name="Example">例</h2> +## 例 -<h3 id="HTML">HTML</h3> +### HTML -<pre class="brush: html"><div> - <span>This is a span.</span> - <span>This is another span.</span> - <em>This is emphasized.</em> - <span>Wow, this span gets limed!!!</span> - <strike>This is struck through.</strike> - <span>Here is one last span.</span> -</div></pre> +```html +<div> + <span>This is a span.</span> + <span>This is another span.</span> + <em>This is emphasized.</em> + <span>Wow, this span gets limed!!!</span> + <del>This is struck through.</del> + <span>Here is one last span.</span> +</div> +``` -<h3 id="CSS">CSS</h3> +### CSS -<pre class="brush: css">span:nth-last-of-type(2) { +```css +span:nth-last-of-type(2) { background-color: lime; -}</pre> - -<h3 id="Result" name="Result">結果</h3> - -<p>{{EmbedLiveSample('Example')}}</p> - -<h2 id="Specifications" name="Specifications">仕様書</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('CSS4 Selectors', '#nth-last-of-type-pseudo', ':nth-last-of-type')}}</td> - <td>{{Spec2('CSS4 Selectors')}}</td> - <td>親を持たない要素も該当するよう追加。</td> - </tr> - <tr> - <td>{{SpecName('CSS3 Selectors', '#nth-last-of-type-pseudo', ':nth-last-of-type')}}</td> - <td>{{Spec2('CSS3 Selectors')}}</td> - <td>初回定義。</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +} +``` -<div> -<p>{{Compat("css.selectors.nth-last-of-type")}}</p> -</div> +#### 結果 + +{{EmbedLiveSample('Examples')}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li>{{Cssxref(":nth-last-child")}}, {{Cssxref(":nth-of-type")}}</li> -</ul> +- {{Cssxref(":nth-last-child")}}, {{Cssxref(":nth-of-type")}} |