react 添加样式
Posted jinzhu4147
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 添加样式相关的知识,希望对你有一定的参考价值。
react添加style样式
var style={ border:‘1px solid #000‘, background:‘red‘, width:‘200px‘ }; var Divider=React.createClass({ render:function(){ return ( <div style={style}> <h2>{this.props.children}</h2> </div> ) } }); React.render( <Divider>questions</Divider>, document.body )
以上是关于react 添加样式的主要内容,如果未能解决你的问题,请参考以下文章