将一个p覆盖在另一个p上有两种手段:一是设置margin为负值,二是设置绝对定位。
可以根个人情况设置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的实例的详细内容。更多信息请关注PHP中文网其他相关文章!