CSS Tutorial - Hover Effects & Transitions
โจ Hover Effects - Interactive Banao
๐ Hover Everywhere:
๐ฑ๏ธ Buttons - Color change
๐ธ Images - Zoom effect
๐ Links - Underline appear
๐ฏ :hover Pseudo-class
button:hover {
background: red;
transform: scale(1.1);
}
โก Transitions - Smooth Changes
transition: property duration;
Example: transition: all 0.3s;
Example
button:hover {
background: blue;
transition: 0.3s;
}