zoukankan      html  css  js  c++  java
  • JS操作css的float属性的特殊写法

    使用js操作css属性的写法是有一定的规律的:

    1、对于没有中划线的css属性一般直接使用style.属性名即可。

    如:obj.style.margin,obj.style.width,obj.style.left,obj.style.position等。

    2、对于含有中划线的css属性,将每个中划线去掉并将每个中划线后的第一个字符换成大写即可。

    如:obj.style.marginTop,obj.style.borderLeftWidth,obj.style.zIndex,obj.style.fontFamily等。

    这个规律我想大多数的前端开发者也都熟知。但在css中有一个特殊的属性其js使用方法比较特殊。这个特殊的属性就是:float。我们不能直接使用obj.style.float来使用,这样操作是无效的。

    其正确的使用方法是为:IE:obj.style.styleFloat,其他浏览器(如firefox,chorme,safari):obj.style.cssFloat。

  • 相关阅读:
    【C#】Color颜色对照表
    eslint的实践
    关于babel和webpack结合使用的实践
    前端学习博客
    css学习4--网格布局
    css学习3--flexbox布局
    CSS学习2-布局介绍
    css学习1
    前端性能优化
    line-height介绍
  • 原文地址:https://www.cnblogs.com/0808bing/p/3268024.html
Copyright © 2011-2022 走看看