:first-line 伪元素
“first-line” 伪元素用于向文本的首行设置特殊样式。
- font
- color
- background
- word-spacing
- letter-spacing
- text-decoration
- vertical-align
- text-transform
- line-height
- clear
p:first-line
{
color:#ff0000;
font-variant:small-caps;
}
:first-letter 伪元素
“first-letter” 伪元素用于向文本的首字母设置特殊样式:
- font
- color
- background
- margin
- padding
- border
- text-decoration
- vertical-align (仅当 float 为 none 时)
- text-transform
- line-height
- float
- clear
p:first-letter
{
color:#ff0000;
font-size:xx-large;
}
demo:
p:first-letter
{
color:#ff0000;
font-size:xx-large;
}
p:first-line
{
color:#0000ff;
font-variant:small-caps;
}
CSS2 - :before 伪元素
“:before” 伪元素可以在元素的内容前面插入新内容。
h1:before
{
content:url(logo.gif);
}
CSS2 - :after 伪元素
“:after” 伪元素可以在元素的内容之后插入新内容。
h1:after
{
content:url(logo.gif);
}