案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
img.x
5
{
6
position:absolute;
7
left:0px;
8
top:0px;
9
z-index:-1
10
}
11
</style>
12
</head>
13
14
<body>
15
<h1>这是一个标题</h1>
16
<img class="x" src="/img/eg_mouse.jpg" /> 
17
<p>默认的 z-index 是 0。Z-index -1 拥有更低的优先级。</p>
18
</body>
19
20
</html>
21