案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
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
h1:before {content:url(/img/w3xue_logo_white.jpg)}
6
</style>
7
</head>
8
9
<body>
10
<h1>This is a heading</h1>
11
<p>The :before pseudo-element inserts content before an element.</p>
12
<h1>This is a heading</h1>
13
<p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 content 属性。
14
</body>
15
</html>