gpt4 book ai didi

html - 如何停止我的 :after content from blocking my anchor?

转载 作者:太空狗 更新时间:2023-10-29 12:36:25 24 4
gpt4 key购买 nike

我制作了一个简单的 Fiddle 来演示我的问题。 http://jsfiddle.net/JTqww/

HTML:

<body>
<div class="button">
<a href="#">
<img SRC="http://www.mikesfreegifs.com/main4/halloween/comehere.gif"/>
<span class="desc">Description</span>
</a>
</div>
</body>

CSS:

.button {
float: left;
width: 100px;
}

.button a {
background:green;
float:left;
z-index:-1;
}

img {
display:inline-block;
}

.desc{
display:inline-block;
text-align:center;
width:200px;
background-color:blue;
color:white;
}
.button:after {
position: absolute;
top: 10%;
left: 10%;
content:"I destroy your anchor";
color:red;
position: absolute;
width: 50%;
height: 50%;


background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

}

如您所见,我在图像之上制作了一个具有叠加玻璃反射效果的按钮。我希望下面的图像和描述都包含在一个 anchor 标记中(它们是,但 :after 内容似乎阻止了 anchor 标记)。如果您将鼠标移到有光泽的白色区域之外,它将与 anchor 交互,但在白色光泽区域内部则不会。

我试过 float anchor 并更改 z-index,但放置在按钮之后的内容('光泽')似乎阻止 anchor 接收鼠标悬停和点击事件。

有人知道怎么解决吗?非常感谢任何帮助。

最佳答案

我用你的代码变通了,所以它看起来不错。

这是 fiddle

要使点击对添加的描述也有效,只需将 :after 赋给 aspan 标签,而不是类 .按钮

Working Fiddle

关于html - 如何停止我的 :after content from blocking my anchor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15384094/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com