@lindabgaaSubmitted almost 2 years ago
Just one question : How can I do the shadow under the cards?
I'm open to any other suggestions to improve my code ! 😃
Just one question : How can I do the shadow under the cards?
I'm open to any other suggestions to improve my code ! 😃
I Used This:
box-shadow: -5px 0px 10px rgba(128, 128, 128, 0.15), 5px 5px 10px rgba(128, 128, 128, 0.15);
Give all of your cards a same class, for example card
.
Your css code should be like this:
.card {
box-shadow: -5px 0px 10px rgba(128, 128, 128, 0.15), 5px 5px 10px rgba(128, 128, 128, 0.15);
}
You can see my solution and If you liked it then, use it.