时间:2021-07-01 10:21:17 帮助过:65人阅读
可以根个人情况设置z-index的值
1->position 为absolute的情况
<html> <head> <style> #p1{position:absolute;width:300px;height:300px;background:#ccc;} #p2{position:absolute;left:0;top:0;width:200px;height:200px;background:red;filter:alpha(opacity=50);} </style> </head> <body> <pid="p1">这里是p1的内容 <pid="p2"></p> </p> </body> </html>
2->用margin为负的操作
<html> <head> <style> #p1 {position:relative; width:300px; height:300px;background:#ccc;} #p2 {position:relative; left:0; top:0;margin-top:-15px;width:200px; height:200px; background:red;filter:alpha(opacity=50);} </style> </head> <body> <pid="p1"> 这里是p1的内容 <pid="p2"></p> </p> </body> </html>
以上就是CSS中如何使div覆盖另一个div的实例的详细内容,更多请关注Gxl网其它相关文章!