Closed codingbootcampseu closed 3 years ago
scale
Hints
.header:hover .hire-me { ... }
Bonus
Use the :focus-within pseudo class to also transform the hire me badge.
:focus-within
.header:focus-within .hire-me { transform: scale(1.5); }
Example Solution and Comparison
die grosse Frage: "transition: 2s linear;" warum kommt zu den Eigenschaften zu .hire-me, und nicht zu xxx:hover .. ??? aber ok. "Make it work,.."!
scale
) when the header is hoveredHints
Bonus
Use the
:focus-within
pseudo class to also transform the hire me badge.Example Solution and Comparison