1

我可能会以错误的方式解决这个问题,但是是否可以在 aa reactjs 组件中添加来自外部 CSS 文件的样式?我尝试以传统方式进行操作,但这似乎不起作用,您可以在外部 css 中引用类或 id 并在那里进行所有样式设置。

    var ProfilePanel = React.createClass({
  render: function() {
    return (
      <div>
        <p class="profile-text">{this.props.text}{this.props.children}</p>    
      </div>
    );
  }
});

在我的 CSS 中,我有:

    .profile-text{
        font-size: 10px;
    }
4

1 回答 1

6

您使用class的是 js 保留的。你需要使用className并且应该工作。

阅读更多

于 2015-05-31T20:38:29.417 回答