Firefox:下拉列表中的浮动元素显示错误

时间:2015-07-13 19:02:50

标签: css firefox zurb-foundation-5 megamenu

请参阅此处:codepen.io/arnaudfabs/pen/waXWJL enter code here

我正在使用Zurb Foundation 5来构建一个大型菜单。我需要每个产品在同一行上的商品名称及其价格。

我为价格添加了 span float right ,它在Chrome和IE上显示得很好。

在Firefox中,价格超出了 li标签,甚至无法点击。

见图片:

不可: enter image description here

为: enter image description here

有关该怎么办的任何想法?谢谢!

1 个答案:

答案 0 :(得分:1)

删除white-space: nowrap;上的样式.top-bar-section .dropdown li a似乎可以解决您在FireFox中的问题。

或者只是覆盖它:

.top-bar-section .dropdown li a{
    white-space: normal;
}