Перейти к содержанию

::first-line

Псевдокласс ::first-line применяет стили к первой строке элемента уровня блока.

Обратите внимание, что длина первой строки зависит от многих факторов, включая ширину элемента, ширину документа и размер шрифта текста.

Псевдо-элементы

Синтаксис

1
2
3
4
/* Selects the first line of a <p> */
p::first-line {
  color: red;
}

Значения

Только малый поднабор свойств CSS можно использовать с псевдоэлементом ::first-line:

  • Свойства шрифта: font, font-kerning, font-style, font-variant, font-variant-numeric, font-variant-position, font-variant-east-asian, font-variant-caps, font-variant-alternates, font-variant-ligatures, font-synthesis, font-feature-settings, font-language-override, font-weight, font-size, font-size-adjust, font-stretch и font-family
  • Свойства фона: background-color, background-clip, background-image, background-origin, background-position, background-repeat, background-size, background-attachment и background-blend-mode
  • Свойство color
  • word-spacing, letter-spacing, text-decoration, text-transform и line-height
  • text-shadow, text-decoration, text-decoration-color, text-decoration-line, text-decoration-style и vertical-align.

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

Поддержка браузерами

Can I Use css-first-line? Data on support for the css-first-line feature across the major browsers from caniuse.com.

Описание и примеры

1
2
3
4
5
6
7
8
9
<p>
  Styles will only be applied to the first line of this paragraph. After that,
  all text will be styled like normal. See what I mean?
</p>

<span
  >The first line of this text will not receive special styling because it is
  not a block-level element.</span
>
1
2
3
4
5
6
7
8
9
::first-line {
  color: blue;
  text-transform: uppercase;

  /* WARNING: DO NOT USE THESE */
  /* Many properties are invalid in ::first-line pseudo-classes */
  margin-left: 20px;
  text-indent: 20px;
}

Результат работы псевдоэлемента ::first-line

Комментарии