Today's day 17 Goal is to Build and learn by styling cards giving a visual look, creating a 6 content cards in Html & CSS from YT Tutorial.
HTML
-
CSS
1. how to give border radius in CSS?
- Write the following code.
border-radius: 10px;
2. how to change the opacity of the background card?
- Change the last parameter in rgba property.
background-color: rgba(255, 255, 255, 0.09);
3. how to give borderline to a card in CSS?
- Write the following code.
border: 1px solid rgba(255, 255, 255, 0.1);
4. How to give cursor input in CSS?
- To give choice to select the cards.
cursor: pointer;
JavaScript
-
Conclusion
Border radius in CSS.
Change the opacity of the background card in CSS.
Borderline to a card in CSS.
cursor input in CSS.
Successfully created 6 cards.
My Code:
Source: YT
Author: Dheeraj.y