0
我已對父代:before
應用了一些樣式,並且裏面的錨元素不再工作。錨元素不工作時:在僞元素之前
似乎有東西重寫了錨元素的默認行爲,但我無法弄清楚是什麼。
我該如何解決這個問題?
.ugallery_item:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
transition:all 0.8s;
opacity:0;
background:url("http://placehold.it/14x14") #eabe24 no-repeat center center;
}
.ugallery_item:hover:before {
opacity:0.8;
}
<div class="ugallery_item ugallery_item_image shuffle-item filtered" style="position: absolute; width: 140px; top: 0px; left: 0px; opacity: 1;" rel="706" data-groups="["label_0"]">
<a class="ugallery_link ugallery_lightbox_link" href="http://placehold.it/300x400" title="">
<img src="http://placehold.it/150x150" alt="" class="ugallery-image" style=" margin-left:0px; margin-top:0px;width:140px; height:140px">
<div class="ugallery_lb_text" rel="706"></div>
</a>
</div>
你的僞元素絕對定位** **上的鏈接** ..所以自然鼠標不能一下就可以了。你想做什麼? – 2015-03-13 12:36:15
是真的,如果你不想在懸停前的before元素髮生什麼事情,只需簡單地將'pointer-events:none'添加到它。 – 2015-03-13 12:40:39