scrimba
The Weekly Web Dev Challenge
The Weekly Web Dev Challenge: Flip Card ๐Ÿคธโ€โ™€๏ธ
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

The Weekly Web Dev Challenge: Flip Card ๐Ÿคธโ€โ™€๏ธ
AboutCommentsNotes
The Weekly Web Dev Challenge: Flip Card ๐Ÿคธโ€โ™€๏ธ
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;
}

/*
DESCRIPTION:

You challenge is to create a responsive flip card.
The user should be able to hover or click on the card
and it needs to flip on the other side to reveal what's on the back.

Remember: the card needs to be responsive - as I change the size of my window,
the card needs to adjust to the new size and look natural.

transform-style, transform, transition,
perspective, pseudo-classes, cursor,
min- max- prefixes, ems and rems,
*/

/* Write your code here ๐Ÿ‘‡ */


/*

DETAILED INSTRUCTIONS
1. Choose the required pseudo-class
2. Figure out how to flip a card on the required event
3. Make it responsive!

*/
Console
/index.html
-1:39