From viewport width 700px to 800px, the .articles (the bottom section) content is overflowing on the right side. I tried reasigning the right-margin to 1 rem, but it didn't fix. Any idea how to fix it?
Abieb_Guardian
@AbibGuardian50All comments
- @revin212Submitted almost 2 years ago@AbibGuardian50Posted almost 2 years ago
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!
0 - @aviralsharma07Submitted almost 2 years ago
-
I am facing an issue with setting up Media Queries to change the border radius of each column as screen size changes but it is not working. Please give me feedback as to how can I do that.
-
I'd love to know if I have written clean code and written which was not required.
@AbibGuardian50Posted almost 2 years agoHi 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 helpful0 -