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 添加样式的主要内容,如果未能解决你的问题,请参考以下文章

React学习第二步,JSX基础以及给JSX添加样式

react 添加样式

使用 webpack 为捆绑代码添加样式

如何将 SCSS 样式添加到 React 项目?

关于react16.4

如何使用 React.createElement 添加悬停 CSS 样式