한 p를 다른 p로 덮는 방법에는 두 가지가 있습니다. 하나는 여백을 음수 값으로 설정하는 것이고, 다른 하나는 절대 위치를 설정하는 것입니다.
개인 상황에 따라 z-index 값을 설정할 수 있습니다
1-> 위치가 절대적인 경우
<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->여백이 있는 연산을 사용하세요 부정적이야
<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!