CSS的z-index属性是做什么用的:
在网页制作中,可能有这样的需求,就是让几个层重叠在一起,并且可以指定顺序,这时候使用z-index属性是个不错的选择。
但是此属性仅作用于position属性值为relative、absolute或fixed的对象,不会作用于窗口控件,如select对象。
实例代码如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.51texiao.cn/" /> <title>蚂蚁部落</title> <style type="text/css"> .index1, .index2, .index3{ position:absolute; width:150px; height:100px; } .index1{ z-index:1; background-color:#663 } .index2{ z-index:2; top:50px; left:50px; background-color:#303 } .index3{ z-index:3; top:100px; left:100px; background-color:#090 } </style> </head> <body> <div class="index1">index1</div> <div class="index2">index2</div> <div class="index3">index3</div> </body> </html>
结合以上代码的表现可以得出以下结论:
1.对象的position属性值必需是relative、absolute或者fixed。
2.z-index属性值大的对象位于z-index属性值小的对象之上。
原文地址是:http://www.51texiao.cn/div_cssjiaocheng/2015/0519/1895.html
最为原始地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=4702
时间: 2024-10-12 02:40:45