The ::first-line
CSS pseudo-element applies styles only to the first line of an element. The amount of the text on the first line depends of numerous factors, like the width of the element, width of the document, and the font size of the text. As all pseudo-elements, ::first-line
does not match any real HTML element.
A first line has only meaning in a block-container box, therefore the ::first-line
pseudo-element has only an effect on elements with a display
value of block
, inline-block
, table-cell
or table-caption
. In all other cases, ::first-line
has no effect.
Only a small subset of all CSS properties can be used inside a declaration block of a CSS ruleset containing a selector using the ::first-line
pseudo-element:
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
, and font-family
color
propertybackground-color
, background-clip
, background-image
, background-origin
, background-position
, background-repeat
, background-size
, background-attachment
, and background-blend-mode
word-spacing
, letter-spacing
, text-decoration
, text-transform
, and line-height
text-shadow
, text-decoration
, text-decoration-color
, text-decoration-line
, text-decoration-style
, and vertical-align
.As this list will be extended in the future, it is recommended that you not use any other properties inside the declaration block, in order to keep the CSS future-proof.
In CSS 2, pseudo-elements were prefixed with a single colon character. As pseudo-classes were also following the same convention, they were indistinguishable. To solve this, CSS 2.1 changed the convention for pseudo-elements. Now a pseudo-element is prefixed with two colon characters, and a pseudo-class is still prefixed with a single colon.
As several browsers already implemented the CSS 2 version in a release version, all browsers supporting the two-colon syntax also support the old one-colon syntax.
If legacy browsers must be supported, :first-line
is the only viable choice; if not, ::first-line
is preferred.
/* CSS3 syntax */ ::first-line { style properties } /* CSS2 syntax */ :first-line { style properties }
Change the letters of the first line of every paragraph to uppercase.
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</p>
p::first-line { text-transform: uppercase; }
Does nothing, margin-left
cannot be applied to a first-line pseudo-element.
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</p>
p::first-line { margin-left: 20px; }
Does nothing, text-indent
cannot be applied to a first-line pseudo-element.
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</p>
p::first-line { text-indent: 20px; }
Specification | Status | Comment |
---|---|---|
CSS Pseudo-Elements Level 4 The definition of '::first-line' in that specification. | Working Draft | Defined more strictly where it can occur. Generalized allowed properties to typesetting, text decoration and inline layout properties and opacity Defined the inheritance of ::first-letter . |
CSS Text Decoration Module Level 3 The definition of 'text-shadow with ::first-line' in that specification. | Candidate Recommendation | Allowed the usage of text-shadow with ::first-letter . |
Selectors Level 3 The definition of '::first-line' in that specification. | Recommendation | The definition of what is the first line of an element has been reworded. The two-colon syntax for pseudo-elements has been introduced. |
CSS Level 2 (Revision 1) The definition of '::first-line' in that specification. | Recommendation | No significant change, though CSS Level 2 still used the one-colon syntax. |
CSS Level 1 The definition of '::first-line' in that specification. | Recommendation | The initial definition used the one-colon syntax. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 1.0[1] | 1.0 (1.7 or earlier) | 9.0 | 7.0[2] | 1.0[3] |
Old one-colon syntax (:first-line ) | 1.0[1] | 1.0 (1.7 or earlier) | 5.5 | 3.5[2] | 1.0[3] |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes)[1] | 1.0 (1) | No support | ? | ? |
Old one-colon syntax (:first-line ) | (Yes)[1] | 1.0 (1) | ? | ? | ? |
[1] The text-transform
property does not work for ::first-line
pseudo-elements (also not for the old one-colon syntax). See Chromium bug 129669.
[2] Since Opera 15.0 (due to the switch to Blink) the text-transform
property does not work for ::first-line
pseudo-elements (also not for the old one-colon syntax). See Chromium bug 129669.
[3] The text-transform
property does not work for ::first-line
pseudo-elements (also not for the old one-colon syntax). See WebKit bug 3409.
::first-letter
pseudo-element.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/::first-line