x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
h1:after {
7
content: url(smiley.gif);
8
}
9
</style>
10
</head>
11
12
<body>
13
<h1>This is a heading</h1>
14
<p>The :after pseudo-element inserts content after an element.</p>
15
<h1>This is a heading</h1>
16
<p><b>注意:</b>仅当!DOCTYPE 已经声明 IE8支持这个内容属性.</p>
17
</body>
18
</html>