@Tegarsetyo6Submitted over 2 years ago
Priyanshu Chouhan
@priynshuchouhnAll comments
- @priynshuchouhnPosted over 2 years ago
You forget to add the hover effect. you can add hover using
<element name>:hover{ property: value; property: value; }
.maintext:hover{ cursor: pointer; color: hsl(178, 100%, 50%); }
#name:hover{ cursor: pointer; color: hsl(178, 100%, 50%); }
for the image you can check my code:
.container .image div:hover{ cursor: pointer; opacity: 1; transition: opacity 0.1s ease-in-out;
}
0