我在父::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>
&#13;
答案 0 :(得分:2)
您已经将伪元素绝对定位在链接上。所以鼠标自然无法点击它。
您可以将伪元素移动到实际链接。
.ugallery_item {
position: absolute;
width: 140px;
top: 0px;
left: 0px;
opacity: 1;
}
.ugallery_lightbox_link {
display: block;
position: relative;
}
.ugallery_lightbox_link: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_lightbox_link:before {
opacity: 0.8;
}
&#13;
<div class="ugallery_item ugallery_item_image shuffle-item filtered" rel="706" data-groups="">
<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>
&#13;
答案 1 :(得分:0)
您想要它,以便您可以单击a并使不透明度正确吗?
为什么不使用a-tag本身,而不是容器?
.ugallery_item a::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 a:hover::before {
opacity:0.8;
}
<强> JSFiddle 强>