diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/line-height-step | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/css/line-height-step')
-rw-r--r-- | files/ja/web/css/line-height-step/index.html | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/files/ja/web/css/line-height-step/index.html b/files/ja/web/css/line-height-step/index.html new file mode 100644 index 0000000000..95065318da --- /dev/null +++ b/files/ja/web/css/line-height-step/index.html @@ -0,0 +1,90 @@ +--- +title: line-height-step +slug: Web/CSS/line-height-step +tags: + - CSS + - CSS フォント + - CSS プロパティ + - Reference + - 'recipe:css-property' +translation_of: Web/CSS/line-height-step +--- +<div>{{CSSRef}}</div> + +<p><strong><code>line-height-step</code></strong> は CSS のプロパティで、行ボックスの高さにおける刻みの単位を設定します。このプロパティが設定された場合、行ボックスの高さは単位の倍数のうち最も近いものに切り上げられます。</p> + +<pre class="brush:css no-line-numbers notranslate">/* ポイント値 */ +line-height-step: 18pt; +</pre> + +<p>{{cssinfo}}</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<p><code>line-height-step</code> プロパティは、以下のうちの一つで指定します。</p> + +<ul> + <li><code><a href="#<length>"><length></a></code></li> +</ul> + +<h3 id="Values" name="Values">値</h3> + +<dl> + <dt><a id="<length>" name="<length>"><code><length></code></a></dt> + <dd>指定された {{cssxref("<length>")}} が、行ボックスの高さの刻みの計算に使用されます。</dd> +</dl> + +<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> + +<pre class="syntaxbox notranslate">{{csssyntax}}</pre> + +<h2 id="Examples" name="Examples">例</h2> + +<p id="sect1">以下の例では、それぞれの段落の行ボックスの高さは、刻みの単位に切り上げられます。 <code><h1></code> の行ボックスの高さは1つの刻みに収まらないので2つ分を占有しますが、その中の中央に配置されます。</p> + +<pre class="brush: css notranslate">:root { + font-size: 12pt; + --my-grid: 18pt; + line-height-step: var(--my-grid); +} +h1 { + font-size: 20pt; + margin-top: calc(2 * var(--my-grid)); +}</pre> + +<p>これらの規則の結果は、次のスクリーンショットのようになります。</p> + +<p><img alt="どのように line-height-step プロパティがテキストの表示に影響するか" src="https://mdn.mozillademos.org/files/15257/line-grid-center.png" style="height: 340px; width: 144px;"></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('CSS Rhythmic Sizing', '#line-height-step', 'line-height-step')}}</td> + <td>{{Spec2('CSS Rhythmic Sizing')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("css.properties.line-height-step")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{Cssxref("font")}}</li> + <li>{{Cssxref("font-size")}}</li> + <li>{{Cssxref("line-height")}}</li> +</ul> |