10

我想要这个使用 jss 样式。

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

试试 1

制定规则c并将类添加到a两者b

c: {
width: '100px'
}

试试 2

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

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

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

有没有更好的方法?

4

2 回答 2

10

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

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

const styles = {
  buttonColor: {
    background: 'red'
  },
  button: {
    extend: 'buttonColor',
    fontSize: '20px'
  }
}
于 2018-12-16T22:50:29.143 回答
4

我觉得更容易解析的一个更简单的替代方法是通过用引号括起来将键设置为字符串:

'.a, .b': {
   width: 100px; 
}
于 2020-02-19T19:04:28.357 回答