我有多個div圖像ontop的DIV
.barinfo {
float:left;
position:relative;
overflow:hidden;
width: 768px;
height: 540px;
background:#000;
-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);
display: none;
}
.mosaic-overlay {
z-index:5;
position:absolute;
width:100%;
height:100%;
background:#000;
}
.details {
margin:15px 20px;
}
,我想一個圖像來覆蓋它。圖像有左和右箭頭,用戶可以點擊它來瀏覽上面提到的div。
我如何使圖像完全獨立於任何東西,因此它是在div的ontop?現在,它只是被推向右側或底部的DIV
這樣做的任何方法的優良
HTML代碼:
<div id="bar5info" class="barinfo">
<div class="mosaic-overlay"><img onload="imageLoaded()" src="images/Seg1.png" /></div>
<div class="details">
<h4>Lorem ipsum</h4>
<p>Lorem ipsum</p>
</div>
</div>
<img src="arrows.png" /> <!--the arrows ontop of the divs-->
我們將需要html代碼來回答。 –
您可能需要的位置:絕對那img – Th0rndike