我有兩個全屏divs堆疊。使div可見,但能夠點擊通過
CSS
#border-overlay {
position:absolute;
z-index: 100;
top:0; left:0;
width: 100vw;
height: 100vh;
box-sizing: border-box;
border: solid 8px white;
}
#button
position: absolute;
display: block;
top: 0; left: 0;
height: 100%; width: 100%;
background-color: rgba(0,0,0,0);
z-index: 15;
}
HTML
<div id="border-overlay"></div>
<a id="button" href=""> ... </a>
我需要在頂部邊框的div按鈕DIV,然而由此,能夠消除我想保持按鈕的鏈接功能。本質上,按鈕佔據全屏幕,因此您可以在任何地方點擊。
任何具體原因你想在上邊框的div? – Kan412
也許這有助於:http://stackoverflow.com/questions/3680429/click-through-a-div-to-underlying-elements – daymosik
你的代碼不清楚你需要什麼,你能描述更多嗎? – M98