span:hover isn#39;t working in Firefox but works in Chrome(span:hover 在 Firefox 中不起作用,但在 Chrome 中起作用)
问题描述
我有一段不能在 Firefox 中运行的代码..icon
图像在按钮悬停时不会改变.它在 Chrome 中完美运行.
I have a piece of code that I doesn't work in Firefox. The .icon
image does not change when the button is hovered. It works perfectly in Chrome.
button.add-to-cart-button .button-left .icon {
display: block;
position: absolute;
left: 0;/*RW 6px; */
top: 0;/*RW 6px; */
width: 35px;/*RW 21px; */
height: 31px;/*RW 19px; */
background: url(http://client4.bostonwebco.com/skin/ideal_responsive/images/custom/add_to_cart.gif) 50% 50% no-repeat;
}
button.add-to-cart-button .button-left {
display: block;
text-indent: -5000px;
overflow: hidden;
padding-left: 0px !important;/*RW 2px */
width: 35px !important;/*RW 30px */
position: relative;
font-size: 11px;
text-align: center;
border: 0px;
height: 31px;
margin: 0px;
}
button.add-to-cart-button:hover span.button-left:hover span.icon:hover {
background: url("http://client4.bostonwebco.com/skin/ideal_responsive/images/custom/add_to_cart-over.gif") 50% 50% no-repeat !important;
display: block;
border: none;
}
<div class="buttons-row">
<button class="button main-button add-to-cart-button" type="submit" title="Add to cart">
<span class="button-right">
<span class="button-left">
<span class="lbl" id="lbl_add_to_cart" onmouseover="javascript: lmo(this, event);">Add to cart</span>
<span class="icon"></span>
</span>
</span>
</button>
</div>
JS 小提琴: http://jsfiddle.net/dKcdK/14/
推荐答案
您的问题是,如果元素是 的子元素,Firefox 不会响应该元素的
.请参阅 https://bugzilla.mozilla.org/show_bug.cgi?id=843003.:hover
选择器按钮
Your issue is that Firefox does not respond to the :hover
selector of an element if it is a child of a button
. See https://bugzilla.mozilla.org/show_bug.cgi?id=843003.
您可以通过将 :hover
附加到 button
来简化 CSS:
You can simplify your CSS by attaching :hover
to the button
instead:
button.add-to-cart-button .button-left .icon {
display: block;
position: absolute;
left: 0;/*RW 6px; */
top: 0;/*RW 6px; */
width: 35px;/*RW 21px; */
height: 31px;/*RW 19px; */
background: url(http://client4.bostonwebco.com/skin/ideal_responsive/images/custom/add_to_cart.gif) 50% 50% no-repeat;
}
button.add-to-cart-button .button-left {
display: block;
text-indent: -5000px;
overflow: hidden;
padding-left: 0px !important;/*RW 2px */
width: 35px !important;/*RW 30px */
position: relative;
font-size: 11px;
text-align: center;
border: 0px;
height: 31px;
margin: 0px;
}
.add-to-cart-button:hover .icon {
background: url("http://client4.bostonwebco.com/skin/ideal_responsive/images/custom/add_to_cart-over.gif") 50% 50% no-repeat !important;
display: block;
border: none;
}
<div class="buttons-row">
<button class="button main-button add-to-cart-button" type="submit" title="Add to cart">
<span class="button-right">
<span class="button-left">
<span class="lbl" id="lbl_add_to_cart">Add to cart</span>
<span class="icon"></span>
</span>
</span>
</button>
</div>
这篇关于span:hover 在 Firefox 中不起作用,但在 Chrome 中起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:span:hover 在 Firefox 中不起作用,但在 Chrome 中起作用
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01