Product Page - Responsive CSS

Solution retrospective
I feel that I learned so much between the last challenge and this one! Any and all feedback is welcome.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @gauravsingh1281
Hii Nick, Congratulations on completing this challlenge 👏👏. I have a suggestions for you. You didn't use the use hovering effect and cursor pointer property on the button element when a user hover the button there should be a hovering effect and cursor which make your website more interactive.
Another thing i noticed that your site become unresponsive below 400px width, to solve this problem you can give width in px, em, rem instead of % to the div of class card i.e
<div class="card container">
and also give some padding to the<div class="info-box six columns" >
and for the pricing section wrap them in a another div and give a class of pricing-section and center them with a CSS display Flex Property like this --<div class="pricing-section"> <span class="new-price">$149.99</span> <span class="old-price">$169.99</span> </div> .pricing-section { display: flex; justify-content: center; align-items: center; }
Marked as helpful
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