如何使用多个选择器重用相同的样式规则

问题描述 投票:3回答:1

我希望这使用jss样式。

.a{
height: 20px;
}
.b{
height: 40px;
}
.a,.b{
width: 100px;
}

Try 1

制定规则c并将类添加到ab

c: {
width: '100px'
}

Try 2

制作一个对象common并将它们合并到ab规则

const common = {
   width: '100px',
};

a: {
height: '20px',
...common
}
b: {
height: '40px',
...common
}

有没有更好的方法?

javascript css reactjs styles jss
1个回答
2
投票

扩展插件怎么样(默认启用)?

https://cssinjs.org/jss-plugin-extend

const styles = {
  buttonColor: {
    background: 'red'
  },
  button: {
    extend: 'buttonColor',
    fontSize: '20px'
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.