React教程系列之初级 -- 指定内联属性中的px

 

    React 里面很多属性可以简写,而且React自动会加px,但是有部分不会加:

 

 

var divStyle = {height: 10}; //height:10px
React.renderComponent(<div style={divStyle}>Hello</div,mountNode)

 

 

  • opacity
  • zIndex
  • zoom
  • lineHeight 

你可能感兴趣的:(react,px)