我已经编写了这段代码,但它不起作用。我的问题是什么?
.class { margin:20px; :hover { color:yellow; } }
为了在嵌套时将选择器连接在一起,您需要使用父选择器 ( &):
&
.class { margin:20px; &:hover { color:yellow; } }