日期:2013-09-19 浏览次数:21273 次
CSS 伪元素被用来将特殊的效果添加到某些选择器。
<html>
<head>
<style type="text/css">
p:first-letter
{
color: #ff0000;
font-size:xx-large
}
</style>
</head>
<body>
<p>
You can use the :first-letter pseudo-element to add a special effect to the first letter of a text!
</p>
</body>
</html>
<html>
<head>
<style type="text/css">
p:first-line
{
color: #ff0000;
font-variant: small-caps
}
</style>
</head>
<body>
<p>
You can use the :first-line pseudo-element to add a special effect to the first line of a text!
</p>
</body>
</html>
伪元素的语法:
selector:pseudo-element {property: value}
CSS类也可以与伪元素配合使用:
selector.class:pseudo-element {property: value}
"first-line"伪元素被用来向某个选择器中的文字的首行添加特殊款式:
p {font-size: 12pt}p:first-line
{color: #0000FF; font-variant: small-caps}<p>Some text that ends up on two or more lines</p>
在上面的例子中,浏览器显示依据first-line伪元素格式化的第一行。浏览器是依托浏览器窗口的尺寸来进行分行的。
提示:first-line伪元素仅能被用于块级元素。
提示:下面的属性可以被使用到first-line伪元素。
first-letter伪元素被用来向某个选择器中的文本的首个字母添加特殊的款式:
p {font-size: 12pt}p:first-letter
{font-size: 200%; float: left}<p>The first words of an article.</p>
输出的效果类似于:
___ | he first | words of anarticle.
伪元素可以与CSS类配合使用:
p.article:first-letter
{color: #FF0000}<pclass="article"
>文章中的一个段落。</p>
上面的例子会使所有class为article的段落的首字母变为红色。
多个伪元素可以配合在一同使用:
p
{font-size: 12pt;}p:first-letter
{color: #FF0000; font-size: 24pt;}p:first-line
{color: #0000FF;}<p>The first words of an article</p>
输出的效果类似于:
__ | he first | words of anarticle.
在上面的例子中,段落的首字母将是字号为24pt的红色。首行的其余部分将会是蓝色,而段落的其余部分会是默认的颜色。
before伪元素可被用于在某个元素之前插入某些内容。
下面的款式会在标题之前播放音频:
h1:before
{content: url(beep.wav)}
after伪类可被用于在某个元素之后插入某些内容。
下面的款式会在标题之后播放音频:
h1:after
{content: url(beep.wav)}
浏览器支持:IE: Internet Explorer, F: Firefox, N: Netscape。
W3C:“W3C”列的数字显示出属性背景由哪个CSS标准定义(CSS1还是CSS2)。
伪元素 | 作用 | IE | F | N | W3C |
---|---|---|---|---|---|
:first-letter | 将特殊的款式添加到文本的首字母 | 5 | 1 | 8 | 1 |
:first-line | 将特殊的款式添加到文本的首行 | 5 | 1 | 8 | 1 |
:before | 在某元素之前插入某些内容 | 1.5 | 8 | 2 | |
:after | 在某元素之后插入某些内容 |