我想顯示從容器溢出的絕對分區。溢出隱藏絕對分區
這裏是我的要求:
- 固定的div溢出的內容。
- 溢出-y應該是自動滾動但不溢出-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>
是您的問題解決了嗎? –
尚未解決。 –
究竟是不是在[this](http://jsfiddle.net/pZQrA/)中工作? –