底部div重叠

时间:2018-01-02 11:19:28

标签: html css responsive-design

我们正在尝试创建电子邮件应用程序。我们在消息体div中遇到问题,它与标题div重叠(包含To / CC / Subject)。在页面加载一切看起来不错,但是当开始在To字段中添加电子邮件ID时,正文部分与标题重叠。

.MainDiv{
position: fixed;
    width: 65%;
    max-width: 890px;
    height: 80%;
    max-height: 1100px;
    z-index: 1000 !important;
    padding: 0px 0px 0px;
    top: 10%;
    left: 23%;
    right: auto;
    bottom: auto;
}

.Header{
    clear: both;
    margin: 0 5px 25px;
    min-height: 100px;
    display: block;
    position: absolute;
    width: 99%;
    border: solid 1px green;
    padding: 10px 20px 0px;
    overflow: initial !important;{
}

.Body{
    position: absolute;
    border: solid 1px red;
    top: 175px;
    bottom: 72px;
    width: 100%;
    overflow-y: auto;
}

ReplyMessage_Screenshot

2 个答案:

答案 0 :(得分:1)

删除position: absolute;导致问题

.MainDiv{
position: relative;
    width: 65%;
    max-width: 890px;
    height: 100%;
    max-height: 1100px;
    z-index: 1000 !important;
    padding: 0px 0px 0px;
    top: 10%;
    left: 23%;
    right: auto;
    bottom: auto;
    border: solid 1px black;
    overflow-y : auto;
}

.Header{
    clear: both;
    
    min-height: 100px;
    display: block;
    width: 100%;
    border: solid 1px green;    
    overflow: initial !important;
}

.Body{
    border: solid 1px red;
    width: 100%;
    overflow-y: auto;
}
h2{
  background-color:yellow;
}
h3{
  background-color:teal;
}
<div class = "MainDiv"  >

<div class ="Header" contenteditable="true">
<h2>
Header  ygygyggyggygyyygyggygyyg yyfyffyyffyfyfy yfyfyfyfy gygygygygyyg yggygygyyggy gygyygygyyggygygygygy yggyygygyggyy uhuuuguug guuggugu
</h2>
</div>
<div class= "Body" contenteditable="true">
<h3>
Message Body
</h3>
</div>
</div>

答案 1 :(得分:0)

你似乎过度了。这也许是你需要的。

&#13;
&#13;
.MainDiv{
}

.Header{
    margin: 0 5px 10px;
    min-height: 100px;
    display: block;
    border: solid 1px green;
    padding: 10px 20px 0px;
}

.Body{
    border: solid 1px red;
    margin: 0 5px 0;
    overflow-y: auto;
    padding: 10px 20px 0px;
    height:300px;
    max-height:600px;
}
&#13;
<div class="MainDiv">
  <div class="Header">

  </div>
  <div class="Body">

  </div>
</div>
&#13;
&#13;
&#13;