gpt4 book ai didi

asp.net - 带有 :link not in IE or Chrome 的 Firefox css float 错误

转载 作者:太空宇宙 更新时间:2023-11-04 16:20:32 25 4
gpt4 key购买 nike

我的默认页面在 ie 中工作正常,但 Firefox 的 a:link 有问题。在我的页面 http://www.printer-ink-toner.co.uk中途是指向我在 ebay 上的状态的链接。对于 Firefox,此链接不起作用,而对于 ie,它起作用。我也可以在我的开发 PC 上重现此行为。

该链接包含在一个名为“centercol50pct”的 float div block 中,其 CSS 为

 .centercol50pct {
position: relative;
float: left;
width: 380px;
margin:0px 5px 0px 0px;
}

如果 float:left; 被删除它工作正常。更改任何其他参数不会对问题产生影响。

此外,搜索下拉列表在 Firefox 中也不起作用。我认为它是相关的,但我想我会先尝试解决更简单的“链接”问题

谢谢奈杰尔

最佳答案

centrecolLowerblock div 覆盖了上述内容,因此无法访问链接。

改变

#centrecolLowerblock {
position: relative;
top: 20px;
}

#centrecolLowerblock {
clear: both;
position: relative;
top: 20px;
}

您的下拉菜单也由于同样的问题而无法正常工作(一个元素与它们重叠)。尝试改变。

h3.h3_Largeblue {
color: blue;
font-size: 20px;
}

h3.h3_Largeblue {
clear: both;
color: blue;
font-size: 20px;
}

这应该可以解决问题:)

关于asp.net - 带有 :link not in IE or Chrome 的 Firefox css float 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6677106/

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