title | slug | l10n | ||
---|---|---|---|---|
line-height-step |
Web/CSS/line-height-step |
|
{{CSSRef}}
{{SeeCompatTable}}
line-height-step
は CSS のプロパティで、行ボックスの高さにおける刻みの単位を設定します。このプロパティが設定された場合、行ボックスの高さは単位の倍数のうち最も近いものに切り上げられます。
/* ポイント値 */
line-height-step: 18pt;
/* グローバル値 */
line-height-step: inherit;
line-height-step: initial;
line-height-step: revert;
line-height-step: revert-layer;
line-height-step: unset;
line-height-step
プロパティは、以下のうちの一つで指定します。
<length>
です。
<length>
- : 指定された {{cssxref("<length>")}} が、行ボックスの高さの刻みの計算に使用されます。
{{cssinfo}}
{{csssyntax}}
以下の例では、それぞれの段落の行ボックスの高さは、刻みの単位に切り上げられます。 <h1>
の行ボックスの高さは 1 つの刻みに収まらないので 2 つ分を占有しますが、その中の中央に配置されます。
:root {
font-size: 12pt;
--my-grid: 18pt;
line-height-step: var(--my-grid);
}
h1 {
font-size: 20pt;
margin-top: calc(2 * var(--my-grid));
}
これらのルールの結果は、次のスクリーンショットのようになります。
{{Specifications}}
{{Compat}}
- {{Cssxref("font")}}
- {{Cssxref("font-size")}}
- {{Cssxref("line-height")}}