diff options
Diffstat (limited to 'files/ja/web/css/word-spacing/index.md')
-rw-r--r-- | files/ja/web/css/word-spacing/index.md | 128 |
1 files changed, 51 insertions, 77 deletions
diff --git a/files/ja/web/css/word-spacing/index.md b/files/ja/web/css/word-spacing/index.md index 974320c478..4c9d0ddafd 100644 --- a/files/ja/web/css/word-spacing/index.md +++ b/files/ja/web/css/word-spacing/index.md @@ -3,123 +3,97 @@ title: word-spacing slug: Web/CSS/word-spacing tags: - CSS - - CSS Text - - CSS テキスト - CSS プロパティ + - CSS テキスト - Reference + - recipe:css-property +browser-compat: css.properties.word-spacing translation_of: Web/CSS/word-spacing --- -<div>{{CSSRef}}</div> - -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>word-spacing</code></strong> プロパティは、タグや単語の間隔に関する挙動を指定します。</p> +{{CSSRef}} -<div>{{EmbedInteractiveExample("pages/css/word-spacing.html")}}</div> +**`word-spacing`** は [CSS](/ja/docs/Web/CSS) のプロパティで、タグや単語の間隔に関する挙動を指定します。 -<div class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</div> +{{EmbedInteractiveExample("pages/css/word-spacing.html")}} -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 -<pre class="brush:css no-line-numbers notranslate">/* キーワード値 */ +```css +/* キーワード値 */ word-spacing: normal; -/* <length> 値 */ +/* <length> 値 */ word-spacing: 3px; word-spacing: 0.3em; -/* <percentage> 値 */ +/* <percentage> 値 */ word-spacing: 50%; word-spacing: 200%; /* グローバル値 */ word-spacing: inherit; word-spacing: initial; +word-spacing: revert; word-spacing: unset; -</pre> +``` -<h3 id="Values" name="Values">値</h3> +### 値 -<dl> - <dt><code>normal</code></dt> - <dd>現在のフォントやブラウザ―で定義された普通の単語の間隔です。</dd> - <dt>{{cssxref("length")}}</dt> - <dd>フォントによって定義された単語の間隔に追加する間隔を定義します。</dd> - <dt>{{cssxref("percentage")}}</dt> - <dd>文字の advance width を基準とした追加する間隔の量をパーセントで指定します。</dd> -</dl> +- `normal` + - : 現在のフォントやブラウザ―で定義された普通の単語の間隔です。 +- {{cssxref("length")}} + - : フォントによって定義された単語の間隔に追加する間隔を定義します。 +- {{cssxref("percentage")}} + - : 文字の advance width を基準とした追加する間隔の量をパーセント値で指定します。 -<h2 id="Example" name="Example">例</h2> +<h2 id="Examples">例</h2> -<h3 id="HTML">HTML</h3> +### HTML -<pre class="brush: html notranslate"><div id="mozdiv1">Here are many words...</div> -<div id="mozdiv2">...and many more!</div></pre> +```html +<div id="mozdiv1">Here are many words...</div> +<div id="mozdiv2">...and many more!</div> +``` -<h3 id="CSS">CSS</h3> +### CSS -<pre class="brush: css notranslate">#mozdiv1 { +```css +#mozdiv1 { word-spacing: 15px; } #mozdiv2 { word-spacing: 5em; -} </pre> +} +``` -<p>{{ EmbedLiveSample('Example') }}</p> +{{ EmbedLiveSample('Examples') }} -<h2 id="Accessibility_concerns" name="Accessibility_concerns">アクセシビリティの考慮事項</h2> +## アクセシビリティの考慮 -<p><code>word-spacing</code> で大きな正の値や負の値を設定すると、スタイルが適用される文が読めなくなります。テキストをとても大きな正の値でスタイル付けすると、単語間が離れすぎて文として表示されなくなります。大きな負の数でスタイル付けすると、それぞれの単語の先頭と末尾が互いに重複して、理解できなくなります。</p> +`word-spacing` で大きな正の値や負の値を設定すると、スタイルが適用される文が読めなくなります。テキストをとても大きな正の値でスタイル付けすると、単語間が離れすぎて文として表示されなくなります。大きな負の数でスタイル付けすると、それぞれの単語の先頭と末尾が互いに重複して、理解できなくなります。 -<p>フォントファミリによって文字の幅が異なるため、読みやすい <code>word-spacing</code> は場面によって検討する必要があります。すべてのフォントファミリで自動的に読みやすさを調整する単一の値はありません。</p> +フォントファミリーによって文字の幅が異なるため、読みやすい `word-spacing` は場面によって検討する必要があります。すべてのフォントファミリーで自動的に読みやすさを調整する単一の値はありません。 -<ul> - <li><a href="/ja/docs/Web/Accessibility/Understanding_WCAG/Perceivable#Guideline_1.4_Make_it_easier_for_users_to_see_and_hear_content_including_separating_foreground_from_background">MDN "WCAG を理解する ― ガイドライン 1.4 の解説"</a></li> - <li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-visual-presentation.html" rel="noopener">Understanding Success Criterion 1.4.8 | W3C Understanding WCAG 2.0</a></li> -</ul> +- [MDN "WCAG を理解する ― ガイドライン 1.4 の解説"](/ja/docs/Web/Accessibility/Understanding_WCAG/Perceivable#guideline_1.4_make_it_easier_for_users_to_see_and_hear_content_including_separating_foreground_from_background) +- [Understanding Success Criterion 1.4.8 | W3C Understanding WCAG 2.0](https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-visual-presentation.html) -<h2 id="Formal_definition" name="Formal_definition">公式定義</h2> +## 公式定義 -<p>{{CSSInfo}}</p> +{{CSSInfo}} -<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2> +## 形式文法 {{CSSSyntax}} -<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('CSS3 Text', '#propdef-word-spacing', 'word-spacing')}}</td> - <td>{{Spec2('CSS3 Text')}}</td> - <td>以前の値を、<code><spacing-limit></code> 値で置き換え。この値は、以前と同じ値か、追加された<code><percentage></code> 値か、もしくは、最適値・最小値・最大値を表す 3 つまでの値を使って定義します</td> - </tr> - <tr> - <td>{{SpecName('CSS2.1', 'text.html#propdef-word-spacing', 'word-spacing')}}</td> - <td>{{Spec2('CSS2.1')}}</td> - <td>変更なし</td> - </tr> - <tr> - <td>{{SpecName('CSS1', '#word-spacing', 'word-spacing')}}</td> - <td>{{Spec2('CSS1')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.word-spacing")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{cssxref("letter-spacing")}}</li> -</ul> +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{cssxref("letter-spacing")}} |