Reputation: 5521
I want to update the styling for li content on hover. but only the color is getting applied on hover and the content is not getting updated. any advice please
li{
&:hover{
content: ' ★ ';
color: red;
}
}
li::before {
content: ' ☆ ';
}
Upvotes: 0
Views: 48
Reputation: 83
li {
&:before {
content: '☆';
}
&:hover {
&:before {
content: '★';
color: red;
}
}
}
Upvotes: 1