z 索引和鼠标点击

发布于 2024-11-05 04:53:20 字数 111 浏览 0 评论 0原文

我的网站布局依赖于大量相互叠加的定位来创建所需的视觉效果。我在 z-index 堆的最底部有一个图像,因此鼠标无法识别它是一个链接,除了将其放在 z-index 堆栈顺序之外,还有什么方法可以解决这个问题吗?

I have a site layout that relies on alot of positioning on top of one another to create the desired visual effect. I have an image at the very bottom of the z-index pile and as a result the mouse cant recognise that its a link, is there any way around this apart from putting it up the z-index stack order?

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

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

发布评论

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

评论(1

夜唯美灬不弃 2024-11-12 04:53:20

您可以放置​​(绝对)样式化的“a”标签,使其位于您想要链接的区域上方。前任:

a.specific{
  display:block;
  width:100px;
  height:100px;
  position:absolute;
  top:100px;
  left:200px;
  z-index:INFINITY! :);
}

You could position (absolute) a styled "a" tag so that it is over the area that you want to link. Ex:

a.specific{
  display:block;
  width:100px;
  height:100px;
  position:absolute;
  top:100px;
  left:200px;
  z-index:INFINITY! :);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文