@yunki-cmdSubmitted about 2 years ago
some feedback to improve
some feedback to improve
You should reset the form when the user clicks continue
Could someone explain how to get the green filter over the image like in the active-state example.
thank you!
-The card looks squished on phones
You could have used rem for the container width instead of viewport-width
#To get the green filter effect over the image# -Wrap the image and an empty div in a div
.child {
left:0;
top:0;
height:100%;
width:100%;
opacity:0;
background-color: color;
}
.parent:hover .child{
opacity: .3;
}