实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
img
6
{
7
position:absolute;
8
left:0px;
9
top:0px;
10
z-index:-1;
11
}
12
</style>
13
</head>
14
15
<body>
16
<h1>This is a heading</h1>
17
<img src="/upload/love/css.gif" width="100" height="140" />
18
<p>因为图像元素设置了 z-index 属性值为 -1, 所以它会显示在文字之后。</p>
19
</body>
20
</html>
21