Answers for "sass button hover"

CSS
1

hover button scss

button {
	// normal css
    
	&:hover {
    	cursor: pointer;
      	background-color: cyan;
    }
}
Posted by: Guest on January-26-2021
4

scss hover

.class {
    margin:20px;
    &:hover {
        color:yellow;
    }
}
Posted by: Guest on June-20-2020

Browse Popular Code Answers by Language