猿问

一个DIV如何覆盖另一个DIV?

 body {background-color:#00ff00;}

            #wrap{

                width: 1000px;

                height: 600px;

                border:1px solid red;

                position: relative;

                margin: 0 auto;

                overflow: hidden;


            }

            #mid{

                width: 1000000000000000000px;

                height: 100%;

                position: absolute;

                left: 0;

                top: 0;

                transition: all  0.5s;

               

            }

     

            #btns{

                position: absolute;

                left:15;top:25;

                bottom: 100px;

bts如何覆盖住mid?


coder_cici
浏览 6615回答 8
8回答

老猿

用z-index就可以覆盖

weibo_哆啦A梦有大口袋_0

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .parent{width: 100px;height: 100px;margin: 100px auto;position: relative;background: #000;} .sub{position: absolute;width: 100%;height: 100%;background: red;} </style> </head> <body> <div class="parent">     <div class="sub"></div> </div> </body> </html>

刚毅87

可以设置浮动,可以使用 margin, 还能用定位,你最好把代码贴出来,可以具体说明.

没看完

可以试试z-index属性

柠檬酸钠

你连HTML都没有,这问题没法答。。。

柠檬酸钠

你连HTML都没有,这问题没法答。。
随时随地看视频慕课网APP
我要回答