Day 338
Back to the CSS Animations course.
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<button>Click Me</button>
**********
* {
box-sizing: border-box;
}
button {
margin: 10px;
background: lightgrey;
color: darkgreen;
transition: all .2s ease;
&:hover {
background: red;
color: white;
}
}
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
<button>Click Me</button>
**********
* {
box-sizing: border-box;
}
button {
margin: 10px;
background: lightgrey;
color: darkgreen;
transition: all .2s ease;
&:hover {
background: red;
color: white;
}
}
Comments
Post a Comment