使用样式化组件,有没有一种选择className的方法

时间:2018-10-20 02:09:40

标签: reactjs styled-components react-dates

我在React项目中使用StyledComponents,并且打算覆盖Airbnb的react-dates库中的样式。他们正在使用带有类的CSS文件,但是我想通过StyledComponents使用包装器组件覆盖CSS(以使我的项目与不使用CSS文件保持一致)。

这可能吗?我没有找到任何东西。

1 个答案:

答案 0 :(得分:1)

尝试尽可能具体,并在必要时添加!important标志。

例如:

#TheID .theClassName .otherDIV .someDIV .divDIV .divitisDIV { color: purple!important; }