Submitted almost 2 years agoA solution to the Product preview card component challenge
Product preview card component
bootstrap
@Joel12r

Solution retrospective
I'm utilizing Bootstrap for the columns and card layout in this project. However, I encountered a challenge regarding how to handle the product image. There are two approaches I considered:
- Using Background Image:
.perfume-image {
background-image: url("./images/image-product-desktop.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
2. **Using Image Path:**
When I tried to add the image directly in the HTML and apply a border-radius to the card, it didn't affect the column or the image itself.
So, my question is, how best can I approach this? Which approach is more practical and suitable for this project?
Code
Loading...
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Stoic's solution.
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord