diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-06 00:14:13 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-15 18:39:56 +0900 |
commit | 6aec5015ee2337ef1cc5ecd8b4f14f4009e0e9fd (patch) | |
tree | 8e00c26dc994741412ab9efcddcbe146fc1668de | |
parent | 1562071478eb084b61487a901a284d37090acb8e (diff) | |
download | translated-content-6aec5015ee2337ef1cc5ecd8b4f14f4009e0e9fd.tar.gz translated-content-6aec5015ee2337ef1cc5ecd8b4f14f4009e0e9fd.tar.bz2 translated-content-6aec5015ee2337ef1cc5ecd8b4f14f4009e0e9fd.zip |
Web/CSS/CSS_Text_Decoration を更新
- 2021/10/05 時点の英語版に同期
-rw-r--r-- | files/ja/web/css/css_text_decoration/index.md | 141 |
1 files changed, 52 insertions, 89 deletions
diff --git a/files/ja/web/css/css_text_decoration/index.md b/files/ja/web/css/css_text_decoration/index.md index 5dd4da31f6..0f6145401c 100644 --- a/files/ja/web/css/css_text_decoration/index.md +++ b/files/ja/web/css/css_text_decoration/index.md @@ -9,45 +9,36 @@ tags: - Reference translation_of: Web/CSS/CSS_Text_Decoration --- -<div>{{CSSRef}}</div> - -<p><ruby><strong>CSS テキスト装飾</strong><rp> (</rp><rt>Text Decoration</rt><rp>) </rp></ruby>は CSS のモジュールの一つで、下線、テキストの影、圏点など、テキスト装飾に関連する機能を定義します。</p> - -<h2 id="Reference" name="Reference">リファレンス</h2> - -<h3 id="Properties" name="Properties">プロパティ</h3> - -<div class="index"> -<ul> - <li>{{cssxref("letter-spacing")}}</li> - <li>{{cssxref("text-align")}}</li> - <li>{{cssxref("text-decoration")}}</li> - <li>{{cssxref("text-decoration-color")}}</li> - <li>{{cssxref("text-decoration-line")}}</li> - <li>{{cssxref("text-decoration-offset")}}</li> - <li>{{cssxref("text-decoration-skip-ink")}}</li> - <li>{{cssxref("text-decoration-style")}}</li> - <li>{{cssxref("text-decoration-thickness")}}</li> - <li>{{cssxref("text-emphasis")}}</li> - <li>{{cssxref("text-emphasis-color")}}</li> - <li>{{cssxref("text-emphasis-position")}}</li> - <li>{{cssxref("text-emphasis-style")}}</li> - <li>{{cssxref("text-indent")}}</li> - <li>{{cssxref("text-rendering")}}</li> - <li>{{cssxref("text-shadow")}}</li> - <li>{{cssxref("text-transform")}}</li> - <li>{{cssxref("white-space")}}</li> - <li>{{cssxref("word-spacing")}}</li> -</ul> -</div> - -<h2 id="Guides" name="Guides">ガイド</h2> - -<p><em>なし。</em></p> - -<h2 id="Examples" name="Examples">例</h2> - -<pre class="brush: css notranslate">.under { +{{CSSRef}} + +**CSS テキスト装飾** (CSS Text Decoration) は CSS のモジュールの一つで、下線、テキストの影、圏点など、テキスト装飾に関連する機能を定義します。</p> + +## リファレンス + +### プロパティ + +- {{cssxref("text-decoration")}} +- {{cssxref("text-decoration-color")}} +- {{cssxref("text-decoration-line")}} +- {{cssxref("text-decoration-skip-ink")}} +- {{cssxref("text-decoration-style")}} +- {{cssxref("text-decoration-thickness")}} +- {{cssxref("text-emphasis")}} +- {{cssxref("text-emphasis-color")}} +- {{cssxref("text-emphasis-position")}} +- {{cssxref("text-emphasis-style")}} +- {{cssxref("text-shadow")}} +- {{cssxref("text-underline-offset")}} +- {{cssxref("text-underline-position")}} + +### ガイド + +_なし。_ + +<h2 id="Examples">例</h2> + +```css +.under { text-decoration: underline red; } @@ -74,53 +65,25 @@ translation_of: Web/CSS/CSS_Text_Decoration .blink { text-decoration: blink; } -</pre> - -<pre class="brush: html notranslate"><p class="under">This text has a line underneath it.</p> -<p class="over">This text has a line over it.</p> -<p class="line">This text has a line going through it.</p> -<p>This <a class="plain" href="#">link will not be underlined</a>, - as links generally are by default. Be careful when removing - the text decoration on anchors since users often depend on - the underline to denote hyperlinks.</p> -<p class="underover">This text has lines above <em>and</em> below it.</p> -<p class="thick">This text has a really thick purple underline in supporting browsers.</p> -<p class="blink">This text might blink for you, - depending on the browser you use.</p> -</pre> - -<p>{{EmbedLiveSample('Examples','auto','320')}}</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 Text Decoration')}}</td> - <td>{{Spec2('CSS4 Text Decoration')}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName('CSS3 Text Decoration')}}</td> - <td>{{Spec2('CSS3 Text Decoration')}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'text.html')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName('CSS1')}}</td> - <td>{{Spec2('CSS1')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +``` + +```html +<p class="under">このテキストには下付近に 1 本の線があります。</p> +<p class="over">このテキストの上に線があります。</p> +<p class="line">このテキストには取り消し線があります。</p> +<p>この<a class="plain" href="#">リンクには下線が引かれていません</a>が、リンクは一般的には既定で下線があります。ユーザーはハイパーリンクを示すアンダーラインを頼りにしていることが多いので、アンカーの文字装飾を削除する場合は注意が必要です。</p> +<p class="underover">このテキストには上<em>と</em>下に線があります。</p> +<p class="thick">対応しているブラウザーでは、このテキストは実に太い紫色の下線があります。</p> +<p class="blink">使用しているブラウザーによっては、このテキストは点滅しているかもしれません。</p> +``` + +{{EmbedLiveSample('Examples','auto','320')}} + +## 仕様書 + +| 仕様書 | 状態 | 備考 | +| ------------------------------------------------ | -------------------------------------------- | ------------------ | +| {{SpecName('CSS4 Text Decoration')}} | {{Spec2('CSS4 Text Decoration')}} | | +| {{SpecName('CSS3 Text Decoration')}} | {{Spec2('CSS3 Text Decoration')}} | | +| {{SpecName('CSS2.1', 'text.html')}} | {{Spec2('CSS2.1')}} | | +| {{SpecName('CSS1')}} | {{Spec2('CSS1')}} | 初回定義 | |