Menu
Coddy logo textTech

Class 'card'

Lesson 13 of 31 in Coddy's 3D Card | Front-end Project course.

challenge icon

Challenge

Easy

Target the class ‘card’:

  1. Set the height to 100%. 
  2. Set border-radius to 50px
  3. Set cursor to pointer

The below code is important for the card, so understand, copy, and then paste:

background: linear-gradient(135deg, rgb(0, 255, 214) 0%, rgb(8, 226, 226) 100%);
transition: all 0.4s ease-in-out;
transform-style: preserve-3d;  

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

All lessons in 3D Card | Front-end Project