案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html>
3
<head>
4
<style type="text/css">
5
a:after
6
{content: " (" attr(href) ")"
7
}
8
</style>
9
</head>
10
11
<body>
12
<p><a href="//www.w3xue.com">W3xue</a> contains free tutorials and references.</p>
13
<p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 content 属性。</p>
14
</body>
15
</html>
16