如何防止外部CSS添加和覆盖ReactJS组件样式

时间:2016-05-24 09:17:15

标签: javascript css reactjs components

我有一个自定义的ReactJS组件,我希望以某种方式设置样式,并作为插件提供给许多不同的网站。但是当网站使用全局样式(Twitter引导程序或其他css框架)时,它会添加并覆盖我的组件的样式。例如:

global.css中:

    label { 
        color: red;
        font-weight: bold;
     }

component.js:

class HelloMessage extends React.Component {
  render() {
      let style = {
          color: "green"
      };
    return (<label style={style}>Hello</label>);
  }
}

结果:

enter image description here

上面我没有在我的组件样式中使用“font-weight:bold”,但结果我的组件正在使用它。

我希望能够将我的自定义组件的样式封装起来,使它们在所有网站上看起来都相同

1 个答案:

答案 0 :(得分:0)

在我看来,最好的方法是为你的组件定义某种重置类,然后放入一组你可以在那里找到的c​​ss重置 (例如http://meyerweb.com/eric/tools/css/reset/

sass文件中的定义可能如下所示:

.your-component-reset {
    div, span, object, iframe {
        margin: 0;
        padding: 0;
        border: 0;
        font-weight: normal;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }
    // add some more reset styles
}

为了避免在您不想使用sass时写下很多内容,只需使用通用选择器*

.your-component-reset * {
     margin: 0;
     padding: 0;
     font-weight: normal;
     // other reset styles ...
}