我有一個使用懸停狀態的容器。每當我將鼠標懸停在上面時,背景都會變爲不同的顏色。將鼠標懸停在背景中並不適用於絕對位置
另外我使用了一個導航,我用postion顯示:絕對在容器上。每次我將鼠標懸停在導航上時,背景更改都不起作用,因爲我沒有在後臺掃描容器。
有沒有解決方法?
我的代碼(懸停在1):
.wrapper {position: relative;}
.container {background: red; width: 100%; height:200px;}
.container:hover {background: blue;}
.nav {position:absolute; top:50%;margin: 0 auto; width:100%; text-align:center;}
<div class="wrapper">
<div class="container">
</div>
<div class="nav">
<a href="#">1</a>
</div>
</div>
這是很難理解你想要什麼這裏! –