我想显示从容器溢出的绝对 div。
以下是我的要求:
- 修复了溢出内容的 div。
- overflow-y 应该是自动滚动,但不是 overflow-y
- 应显示绝对 div。
- 页面不应该滚动唯一的固定位置 div 应该是滚动的
这是我遇到的问题:
- 在为面板放置溢出属性时,绝对 div 被隐藏。
- 并在删除溢出属性时面板不滚动。
css
#panel {
position: fixed;
top: 0px;
right: 20%;
bottom: 0px;
background: snow;
}
.contact {
background: skyblue;
position: relative;
height:50px;
}
.std {
width: 80px;
}
.vtl {
position: absolute;
background: red;
display: none;
left:-153px;
margin-top:-35px;
width: 150px;
height: 50px;
}
.vtl:after {
content: ' ';
height: 0;
position: absolute;
width: 0;
border: 10px solid transparent;
border-left-color: red;
left: 100%;
top: 10px;
}
.contact:hover .vtl {
display: block;
}
html
<div id="panel">
<div class="contact">
<div class="std">
Hover me!
</div>
<div class="vtl">
tools
</div>
</div>
<div class="contact">
<div class="std">
Hover me!
</div>
<div class="vtl">
tools
</div>
</div>
<div class="contact">
<div class="std">
Hover me!
</div>
<div class="vtl">
tools
</div>
</div>
......
</div>