切换div容器与其下的另一个容器重叠

时间:2012-09-13 21:41:47

标签: css html position containers

我的网站表单页面上有3个div。每当我点击切换按钮时,左上方的切换就会与底部div重叠。

我想要做的是,当点击顶部div容器时,左下方的div容器应该向下移动,并在切换关闭时移回到它的前一个位置。

我已将css包含在正确的div中,我不知道这是否会影响两个div旁边的位置。

切换之前

enter image description here

切换后

enter image description here

切换的CSS

#toggle-view {
list-style:none;    
font-family:arial;
font-size:10px;
margin:0;
padding:0;
width:200px; 
position: absolute;
}

#toggle-view li {
    list-style:none;
    text-decoration:none;
    font-size:13px;
    font-family:'lato';
    padding:2px;
    margin:10px;
    margin-left:20px;
    position:relative;
    cursor:pointer; 
    border-radius: 5px;    
}

 #toggle-view li a:hover {
    color: brown;  
}

#toggle-view h3 {
    margin:0;
    font-size:13px;
    color:#2a5a9a;
}

#toggle-view span {
    position:absolute;
    right:5px; top:0;
    color:#2a5a9a;
    font-size:20px;
    font-weight: bolder;
}

#toggle-view p {
    margin:5px 0;
    display:none;
}

#toggle-view a{
    padding:5px 0;
    color:#35371c; 
}

#toggle-view a:hover{

     color:#2a5a9a;
}

LeftBox的CSS

.report{
position: absolute;
margin-top:100px;
margin-left:0;
padding-left: 20px;
}

右框的CSS

.register-body {
height:auto;
font-size:1em;
width:710px;
position:relative;
color:#000;
border-radius:5px;
background-color:#d2d4bb;
line-height:20px;         
margin:20px 0 20px 250px;
padding:15px 15px 0; 
}

更新

当我改变时

#toggle-view {
position: absolute;
}

#toggle-view {
position: relative;
}

.report{
 position: absolute;
}

.report{
 position: relative;
 }

我明白了:

enter image description here

右框被推到左下方的框下方。

1 个答案:

答案 0 :(得分:4)

这是因为你使用绝对位置。尝试在没有绝对定位的情况下进行布局,然后它将移动并弯曲并弯曲到您的全能意志! :)