在 Safari 浏览器中导航时出现奇怪的问题
我的网站中有导航栏,可以使链接在任何地方都能正常工作。但在 Safari 上,由于某种原因,链接无法点击,除非您突出显示选项上方的空白区域。我进一步诊断它,发现我为搜索框添加了一个负的边距顶部,以使其与选项正确对齐,当我删除该边距顶部时,链接是可单击的。有什么想法吗?
I have navigation bar in my website that makes the links work properly everywhere. But when on Safari, for some reason the links are not clickable unless you highlight the empty space above the option. I diagnosed it further to find that I was adding a negative margin-top for the searchbox to align it properly with the options, when I removed that margin-top, the links were clickable. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 z 索引和位置:绝对来确保您的导航 Div 位于顶部。这很可能就是问题所在。
尝试一下...添加
到您的 css 导航中。
You could use a z-index and position:absolute to make sure your navigation Div is on top. thats more than likely what the problem is.
Try that... add
to your navigation in css.