SzabiSch / bootcamp-schedule

0 stars 0 forks source link

Advanced HTML&CSS: Transform #38

Closed codingbootcampseu closed 3 years ago

codingbootcampseu commented 3 years ago

Hints

.header:hover .hire-me {
  ...
}

Bonus

Use the :focus-within pseudo class to also transform the hire me badge.


.header:focus-within .hire-me {
  transform: scale(1.5);
}

Example Solution and Comparison

SzabiSch commented 3 years ago

die grosse Frage: "transition: 2s linear;" warum kommt zu den Eigenschaften zu .hire-me, und nicht zu xxx:hover .. ??? aber ok. "Make it work,.."!