学习网页技术CSS高级教程之CSS 伪元素
2008-02-23 08:43:48来源:互联网 阅读 ()
CSS 伪元素被用来将特殊的效果添加到某些选择器。
CSS 伪元素 (Pseudo-elements)实例:
- 制作首字母特效
- 本例演示如何向文本的首字母添加特效。
<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 伪元素
"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伪元素。
- font properties
- color properties
- background properties
- word-spacing
- letter-spacing
- text-decoration
- vertical-align
- text-transform
- line-height
- clear
:first-letter 伪元素
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 an article.
- font properties
- color properties
- background properties
- margin properties
- padding properties
- border properties
- text-decoration
- vertical-align (仅当float为none时)
- text-transform
- line-height
- float
- clear
伪元素和CSS类
伪元素可以与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 an article.
在上面的例子中,段落的首字母将是字号为24pt的红色。首行的其余部分将会是蓝色,而段落的其余部分会是默认的颜色。
CSS2 - :before伪元素
before伪元素可被用于在某个元素之前插入某些内容。
下面的样式会在标题之前播放音频:
h1:before
{
content: url(beep.wav)
}
CSS2 - :after伪元素
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 | 在某元素之后插入某些内容 | 1.5 | 8 | 2 |
关键词:
【推荐给好友】【关闭】最新五条评论
查看全部评论
评论总数 0 条您的评论
- 学习网页技术CSS高级教程之CSS2 媒介类型 2008-02-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash