css伪元素选择器(E:first-line)

css伪元素选择器(E:first-line)。匹配匹配E元素的第一行。

by Wang Peng

HTML

<p>This is a paragraph of text that has only one stylesheet applied to it. That style causes the first line to be gray. No other lines will be gray.</p>

CSS

p:first-line {
    color: red;
}