我有兩個div使用z-index
一點點的問題。我創建了一個名爲topbar的div
,其中z-index: 1
和另一個名爲「socialbuttons」的圖標是z-index: 2
,它與Facebook和Twitter有圖像鏈接。但是,頂欄與soc按鈕重疊,我既看不到也不點擊社交按鈕。我已經搜索了互聯網,並盡我所能,但我仍然堅持同樣的問題。任何幫助將不勝感激。這是我的HTML代碼Div與背景顏色重疊與鏈接的div
<div id ="topbar"
style="height: 56px; width:95%; background-color:#002268; z-index:-1; position:relative; top: -6px; left: -1px;">
</div>
<div id= "socialbuttons"
style= "position:relative; z-index: 1000; top: 15px; left: 770px; height:53px; width: 249px; margin-bottom: 0px;">
<a href="https://twitter.com" target="_blank">
<img alt="" src="images/twitter.png"
style="position:absolute; top: 0px; left:40%; height:49px; width: 59px; z-index:1000"/></a><a href="https://www.facebook.com" target="_blank"><img alt="" src="images/fbook.png"
style="position:relative; width:50px; height:49px; top: 0px; z-index:1000"/></a></div>
您是否正在使用任何外部CSS文件?因爲你的代碼適合我。 檢查此http://jsfiddle.net/chankeypathak/29sk4/1/ –
我已經刪除了css文件,但仍然沒有運氣。它在VS 2010的設計模式下工作得很好,但不適用於我的任何瀏覽器。我真的很難過! – user3418385
您是否正在將社交媒體圖標置於頂部欄部分?如果是這樣,爲什麼你可以把代碼放在div頂部? –