diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-04 22:08:24 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-14 23:09:59 +0900 |
commit | 6c1c1ef36d999fb9761c73b7f49eae58a9188767 (patch) | |
tree | 8fdff4e082d691be5a41e9ed1705b3898663cd13 /files/ja/web | |
parent | b25bc3d0b656ae56fdd9277af12c1cb60017267a (diff) | |
download | translated-content-6c1c1ef36d999fb9761c73b7f49eae58a9188767.tar.gz translated-content-6c1c1ef36d999fb9761c73b7f49eae58a9188767.tar.bz2 translated-content-6c1c1ef36d999fb9761c73b7f49eae58a9188767.zip |
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files/ja/web')
-rw-r--r-- | files/ja/web/css/_colon_root/index.md | 84 |
1 files changed, 40 insertions, 44 deletions
diff --git a/files/ja/web/css/_colon_root/index.md b/files/ja/web/css/_colon_root/index.md index 902dac18db..1ab5ebdf37 100644 --- a/files/ja/web/css/_colon_root/index.md +++ b/files/ja/web/css/_colon_root/index.md @@ -1,63 +1,59 @@ --- title: ':root' -slug: 'Web/CSS/:root' +slug: Web/CSS/:root tags: - CSS - - Layout - - Pseudo-class - - Reference - - Web + - 要素 + - レイアウト + - ノード + - 擬似クラス + - リファレンス - セレクター - - 疑似クラス -translation_of: 'Web/CSS/:root' + - ウェブ + - root +browser-compat: css.selectors.root +translation_of: Web/CSS/:root --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>:root</code></strong> <a href="/ja/docs/CSS/Pseudo-classes" title="Pseudo-classes">疑似クラス</a>は、文書を表すツリーのルート要素を選択します。 HTML では、 <code>:root</code> は {{HTMLElement("html")}} 要素を表し、<a href="/ja/docs/Web/CSS/Specificity">詳細度</a>が高いことを除けば <code>html</code> セレクターと同等です。</p> +**`:root`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)で、文書を表すツリーのルート要素を選択します。 HTML では `:root` は {{HTMLElement("html")}} 要素を表し、[詳細度](/ja/docs/Web/CSS/Specificity)が高いことを除けば `html` セレクターと同等です。 -<pre class="brush: css no-line-numbers notranslate">/* 文書のルート要素(HTML の場合は <html>)を選択 */ +```css +/* 文書のルート要素(HTML の場合は <html>)を選択 */ :root { background: yellow; -}</pre> +} +``` -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 {{csssyntax}} -<h2 id="Example" name="Example">例</h2> +## 例 + +### グローバルの CSS 変数 -<p><code>:root</code> はグローバルの <a href="/ja/docs/Web/CSS/Using_CSS_variables">CSS 変数</a>を宣言するのに便利です。</p> +`:root` はグローバルの [CSS 変数](/ja/docs/Web/CSS/Using_CSS_custom_properties)を宣言するのに便利です。 -<pre class="brush: css notranslate">:root { +```css +:root { --main-color: hotpink; --pane-padding: 5px 42px; } -</pre> - -<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', '#root-pseudo', ':root')}}</td> - <td>{{Spec2('CSS4 Selectors')}}</td> - <td>変更なし。</td> - </tr> - <tr> - <td>{{SpecName('CSS3 Selectors', '#root-pseudo', ':root')}}</td> - <td>{{Spec2('CSS3 Selectors')}}</td> - <td>初回定義。</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> - -<p>{{Compat("css.selectors.root")}}</p> +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{HTMLElement("html")}} +- {{domxref("Document.rootElement")}} +- {{domxref("Node.getRootNode()")}} +- {{domxref("Element.shadowRoot")}} +- {{domxref("ShadowRoot")}} |