1. Веб-технологии для разработчиков
  2. CSS: каскадные таблицы стилей
  3. Руководство по CSS
  4. Properties
  5. line-height

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

line-height

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨июль 2015 г.⁩.

Свойство CSS line-height устанавливает величину пространства между строками, например в тексте. В блочных элементах оно указывает минимальную высоту блоков строк внутри элемента. В незамещаемых внутристрочных элементах —указывает высоту, которая используется для вычисления высоты блоков строк.

Интерактивный пример

line-height: normal;
line-height: 2.5;
line-height: 3em;
line-height: 150%;
line-height: 32px;
<section id="default-example">
 <div class="transition-all" id="example-element">
 Far out in the uncharted backwaters of the unfashionable end of the western
 spiral arm of the Galaxy lies a small unregarded yellow sun.
 </div>
</section>
#example-element {
 font-family: Georgia, sans-serif;
 max-width: 200px;
}

Синтаксис

css
/* Keyword value */
line-height: normal;
/* Unitless values: use this number multiplied
by the element's font size */
line-height: 3.5;
/* <length> values */
line-height: 3em;
/* <percentage> values */
line-height: 34%;
/* Global values */
line-height: inherit;
line-height: initial;
line-height: unset;

Свойство line-height задаётся с помощью:

Значения

normal

Зависит от пользовательского браузера. Компьютерные браузеры (включая Firefox) используют значение по умолчанию приблизительно 1.2, в зависимости от элементов font-family.

<число> (без именования)

Значением line-height будет результат умножения указанного числа (без именования) на размер шрифта элементов. Указанное число, по сути, множитель. В большинстве случаев это предпочтительный способ указания значения line-height, потому что позволяет избежать непредвиденных результатов при наследовании.

<величина>

Указанная <величина> используется при вычислении высоты блока строки. Значение, заданное в единицах em может привести к непредвидимым результатам (смотри пример ниже).

<процентное соотношение>

Относительно размера шрифта самого элемента.Relative to the font size of the element itself. The computed value is this <percentage> multiplied by the element's computed font size. Percentage values may produce unexpected results (see the second example below).

Формальное определение

Начальное значение normal
Применяется квсе элементы. Это также применяется к ::first-letter и ::first-line.
Наследуется да
Процентыотносятся к размеру шрифта самого элемента
Обработка значения для процентов и значений длин, абсолютной длины, если другое не указано
Animation type число или длина

Формальный синтаксис

line-height = 
normal |
<number [0,∞]> |
<length-percentage [0,∞]>

<length-percentage> =
<length> |
<percentage>

Примеры

Basic example

css
/* All rules below have the same resultant line height */
div {
 line-height: 1.2;
 font-size: 10pt;
} /* number */
div {
 line-height: 1.2em;
 font-size: 10pt;
} /* length */
div {
 line-height: 120%;
 font-size: 10pt;
} /* percentage */
div {
 font:
 10pt/1.2 Georgia,
 "Bitstream Charter",
 serif;
} /* font shorthand */

It is often more convenient to set line-height by using the font shorthand as shown above, but this requires the font-family property to be specified as well.

Prefer unitless numbers for line-height values

This example shows why it is better to use <number> values instead of <length> values. We will use two <div> elements. The first, with the green border, uses a unitless line-height value. The second, with the red border, uses a line-height value defined in ems.

CSS

css
.green {
 line-height: 1.1;
 border: solid limegreen;
}
.red {
 line-height: 1.1em;
 border: solid red;
}
h1 {
 font-size: 30px;
}
.box {
 width: 18em;
 display: inline-block;
 vertical-align: top;
 font-size: 15px;
}

HTML

html
<div class="box green">
 <h1>Avoid unexpected results by using unitless line-height.</h1>
 length and percentage line-heights have poor inheritance behavior ...
</div>
<div class="box red">
 <h1>Avoid unexpected results by using unitless line-height.</h1>
 length and percentage line-heights have poor inheritance behavior ...
</div>
<!-- The first <h1> line-height is calculated from its own font-size (30px ×ばつ 1.1) = 33px -->
<!-- The second <h1> line-height results from the red div's font-size (15px ×ばつ 1.1) = 16.5px, probably not what you want -->

Result

Спецификации

Specification
CSS Inline Layout Module Level 3
# line-height-property

Совместимость с браузерами

Смотрите также

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /