有可能用更少的钱做到这一点吗?
a {
&:after {
background: red;
}
&:hover {
&:after {
background: blue;
}
}
}
:after
悬停时无法更改颜色a
?
以下对我来说很好:
a {
&:after {
content:'a';
background: red;
}
&:hover {
&:after {
background: blue;
}
}
}
我启用 LESS 的编辑器将其编译为:
a:after {
content: 'a';
background: red;
}
a:hover:after {
background: blue;
}
哪个有效。
这对我来说也很好用:-
a{
&:after{
background: red;
content: "Hover Text"
}
&:hover{
&:after{
background: yellow;
}
}
}
我的终端将其编译为:-
a:after {
background: red;
content: "Hover Text";
}
a:hover:after {
background: yellow;
}
a {
&:after {
background: red;
}
&:hover,
&:after {
background: blue;
}
}
现在可以了:P