- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3小时前关门了。
Improve this question
我对css/frontend非常陌生,我想知道是否有任何方法可以在css类中设置所有后续html元素的样式。
例如styles.error中的所有div。
我在react中使用了Modules,我很困惑为什么下面的代码没有对整个div元素进行样式化。
Error.module.css
error.jsx
Page view
我希望看到div元素被着色
1条答案
按热度按时间irtuqstp1#
这里有两件事你可以注意到:
.error
中没有任何div。它应该是div.error
而不是.error div
。styles.css
或error.css
,无论名称是什么),然后将这些全局CSS文件导入您的**index.js
**中。希望这能有所帮助!