Latest solutions
Latest comments
- @revin212@AbibGuardian50
Hi revin congratulations for your completions on this challenge
For your questions,you can use padding-right : 1.25rem to fix your overflowing content on the right side.
I hope it can help
Have A great day!
- @aviralsharma07@AbibGuardian50
Hi Aviral Sharma! Congrats on your achievement to complete this challenge
Before the answer,you could read about css shorthand on border radius and @media screen rule in https://www.w3schools.com/cssref/css3_pr_border-radius.php and https://www.w3schools.com/cssref/css3_pr_mediaquery.php First,to change the border radius as screen size changes,you need to know which border you want to change. You can use this on your code @media all and (max-width: 600px) { .card1{ border-radius: 10px 10px 0px 0px; } .card2{ border-radius: 0 0 0 0; } .card3{ border-radius: 0 0 10px 10px; } }
And then,you can delete @media all and (max-width: 1023px).
Is there any question,please ask and correct me if im wrong Thank You!
Marked as helpful