gpt4 book ai didi

Firefox 中的 CSS 工具提示悬停位置问题

转载 作者:太空宇宙 更新时间:2023-11-03 18:52:28 24 4
gpt4 key购买 nike

我找到了一个完整的 CSS 工具提示,可以在新站点中使用。它在 Safari 和 Chrome 中完美运行。但只有在 Firefox 中,无论链接在页面的哪个位置,工具提示都会一直悬停在 DIV 的最左侧。

我在这个网站上发现这个问题非常接近,但没有给我需要的答案。 CSS Tooltip hovering position issue

它会在 Firefox 中出现错误,还是我需要专门为 Firefox 添加额外的代码?

我确实根据设置规则确保了相对和绝对定位是正确的。我对这一切还是很陌生。因此,我们将不胜感激。

谢谢。

这是我的代码:

a.tip2 {
position: relative;
text-decoration: none;
}

a.tip2 span {display: none;}

a.tip2:hover span {
display: block;
position: absolute;
padding: .5em;
content: attr(title);
min-width: 120px;
text-align: center;
width: auto;
height: auto;
white-space: nowrap;
top: -32px;
background: rgba(0,0,0,.8);
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
color: #fff;
font-size: .86em;
}

a.tip2:hover span:after {
position: absolute;
display: block;
content: "";
border-color: rgba(0,0,0,.8) transparent transparent transparent;
border-style: solid;
border-width: 10px;
height:0;
width:0;
position:absolute;
bottom: -20px;
left:1em;
}

最佳答案

Firefox 将悬停图像定位在与 IE、Chrome 和 Safari 不同的位置时,我遇到了类似的问题。

我专门为 Firefox 更改了 css:

/*Firefox*/
@-moz-document url-prefix()
{
a.enlarge:hover span{top: 250px; left: 20px;}
}

而对于其他浏览器,我使用的是 top: -200px

关于Firefox 中的 CSS 工具提示悬停位置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14570146/

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