Answers for "edit hover with sass"

CSS
1

edit hover with sass

You can nest this code inside the element which you want to modify in a specific
state. Example:

button
  background: none
  &:hover
     color: red
   
This would result in a hover modified button
Posted by: Guest on October-12-2021

Browse Popular Code Answers by Language