我有一个组件,其中有另一个嵌套组件。在特定页面上,我希望该组件具有不同的背景颜色,但是它不起作用。我正在使用LESS并从styles.module.less导入样式。我在做什么错了?
<ParentComponent className={styles.parent}>
<ChildComponent className={styles.child} />
</ParentComponent>
.parent {
.child {
background-color: black;
}
}
答案 0 :(得分:0)
您尝试过这样设置样式吗?
.parent .child {
background-color: black;
}
希望有帮助。
答案 1 :(得分:0)
顺便说一下,您可以像这样设置线条样式:
<ChildComponent style={{backgroundColor: 'black'}} className={styles.child} />