使用z-index:-1属性设置元素的堆叠顺序,-1 表示向下,1 表示向上。
实例代码;
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
img{
position:absolute;
left:5px;
top:10px;
z-index:-1;
}
</style>
</head>
<body>
<h1>这是标题</h1>
<img src="img/dwoke2.png"></img>
<p>由于图像的z-index为-1,它将被置于文本之后。</p>
</body>
</html>
~
运行效果:
评论