此問題是Chrome特定的。父div的滾動條覆蓋子div
我有一個div容器與position: fixed
和裏面我有position: fixed
只有在Chrome瀏覽器中彈出DIV,容器div的滾動條重疊我彈出股利。 (見附圖)
編輯: 添加代碼來說明問題:
html, body {
height: 100%;
}
body {
margin:0;
}
#content {
position: fixed;
top: 5px;
left: 0;
right: 0;
bottom: 5px;
width:300px;
overflow-y: scroll;
}
#messages {
overflow: auto;
}
#messages .message {
height: 79px;
background: #999;
border-bottom: 1px solid #000;
}
.popup {
position: fixed;
width:250px;
height:200px;
background-color:red;
top: 50px;
left: 200px
}
.popup .videoTag {
width: 100%;
height: 100%;
}
<div id="container">
<div id="content">
<div id="messages">
<div class="message">example</div>
<div class="message">example</div>
<div class="popup">
<video class="videoTag" controls>
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
</div>
<div class="message">example</div>
<div class="message">example</div>
<div class="message">example</div>
<div class="message">example</div>
</div>
</div>
</div>
請分享您的代碼... –
如果我們可以看到您的HTML標記和您的CSS以及任何相關的JavaScript,將會非常有用。否則,我們不能做任何事情,只能猜測,這對你沒有用處。 (請參閱隨機猜測答案...) –
@MarkSchultheiss添加了代碼段,記住問題只在Chrome上。 – ScrapCode