scss hover
.class {
margin:20px;
&:hover {
color:yellow;
}
}
scss hover
.class {
margin:20px;
&:hover {
color:yellow;
}
}
ampersand css
//there is a lot of repetition
.button:visited {
//style goes here
}
.button:hover {
//style goes here
}
button:active {
//style goes here
}
//this can be simplified by using an ampersand
.button {
&:visited { }
&:hover { }
&:active { }
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us