Firefox删除了我的float:left

Firefox strips out my float:left

本文关键字:left float 我的 删除 Firefox      更新时间:2023-09-26

在我的Javascript中,我有一些代码看起来像这样:

itemView.style.float = 'left';

在chrome中浮动:left出现fine:

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";

应该是:

itemView.style.cssFloat="left"

下面是关于cssFloat属性的更多内容