为什么 HTML 链接不能在透明边框 div 内工作?

发布于 2024-11-19 08:08:54 字数 274 浏览 0 评论 0原文

我最初设置了一个

z-index 位于其他内容之上。我无法点击,因为尽管它是透明的,但它不可点击。

我试图将各个部分分开——侧面、角落等等,但链接仍然无法点击。

这是我的页面: http://4amnew.4thavenuemedia.com

有什么想法吗?

I originally setup a single <div>, z-indexed above other content. I couldn't click through because even though it was transparent, it wasn't clickable.

I tried to split the pieces apart - sides, corners and all, but the link is still not clickable.

Here's my page:
http://4amnew.4thavenuemedia.com

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

表情可笑 2024-11-26 08:08:54

调整你的CSS:

#twitter
{
   z-index: 200;
}

adjust your css:

#twitter
{
   z-index: 200;
}
情深如许 2024-11-26 08:08:54

为 #logo id 提供 Z-index:250

#logo {
height:136px;
left:90px;
position:absolute;
top:0;
width:240px;
z-index:200;
}

如果您想测试链接也可点击,则意味着提供 z-index:210;对于#twitter

Give Z-index:250 for #logo id

#logo {
height:136px;
left:90px;
position:absolute;
top:0;
width:240px;
z-index:200;
}

IF you want to test link also clickable means give z-index:210; for #twitter

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文