Firefox剥离我的浮动:左

时间:2013-05-28 16:14:07

标签: javascript css firefox css-float

在我的Javascript中,我有一些代码如下:

itemView.style.float = 'left';

在chrome中,浮动:左边很好:

style="float: left; cursor: pointer; color: rgb(102, 102, 102); font-size: 12px; line-height: 14px; text-decoration: none; width: 155px; height: 30px; padding-left: 24px; padding-top: 9px; margin-top: -4px; background-color: white; background-position: initial initial; background-repeat: initial initial";

然而在Firefox中却缺少

style="cursor: pointer; color: rgb(102, 102, 102); font-size: 12px; line-height: 14px; text-decoration: none; width: 155px; height: 30px; padding-left: 24px; padding-top: 9px; margin-top: -4px; background: none repeat scroll 0% 0% white";

1 个答案:

答案 0 :(得分:4)

应该是:

itemView.style.cssFloat="left"

这里多了about the cssFloat property