Firefox中image-rendering CSS属性的DOM等效项是什么?即有没有办法将其设置为除element.style.cssText = "image-rendering: -moz-crisp-edges;"之外?

注意:浏览器兼容性不是问题。

最佳答案

在firefox 4.0rc1中,我可以使用

element.style.imageRendering =“ -moz-crisp-edges”;

没有什么问题。

像其他任何CSS属性一样,只需将连字符小写切换为camelCase。

08-08 05:32