Class 'card'
Lesson 13 of 31 in Coddy's 3D Card | Front-end Project course.
Challenge
EasyTarget the class ‘card’:
- Set the height to 100%.
- Set border-radius to 50px
- 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
1Introduction
What you will build?