因此,对于我的create-react-app,我使用样式加载器来使用组件级CSS,如下所示:
:local(.form) {
max-width: 800px;
min-height: 400px;
margin: 0 auto;
background-color: white;
padding: 50px 35px;
box-shadow: 0 0 2px 0 rgba(0,0,0,0.12), 0 2px 2px 0 rgba(0,0,0,0.12);
border-radius: 50px;
}
但是,我该怎么做呢:
nav {
line-height: 45px;
height: 45px;
background-color: white;
}
/* The icon of our app */
nav a .library-music {
line-height: 45px;
height: 45px;
color: orange;
font-size: 30px;
}
你看到了问题吗?我不能做“:local(nav a .library-music)。换句话说,将本地化CSS应用于非类元素的正确语法或方法是什么?
提前致谢,
答案 0 :(得分:0)
nav a :local(.library-music) {
line-height: 45px;
height: 45px;
color: orange;
font-size: 30px;
}
您的nav
和a
标记不受css编译器的影响,因此您只需将:local()
修饰符应用于类名。