Deniel Den• 21,600
@denielden
Posted
Hi Chiamaka, I took some time to look at your solution and you did a great job!
Also I have some tips for improving your code:
- add descriptive text in the
alt
attribute of the image - To make it look as close to the design as possible set
width: 25rem;
to.card-container
class - remove all
margin
frombody
class because with flex they are superfluous - try to add a little
transition
on the element with hover effect - For add the top image in the background just put more specific background properties to the body:
background: url("../img/pattern-background-desktop.svg") no-repeat top center;
background-size: contain;
background-color: #e0e8ff;
Overall you did well :)
Hope this help and happy coding!
Marked as helpful
1