@dragoshcodeSubmitted about 3 years ago
1.How do I make the width smaller for mobile version? 2.Any more critic is welcomed, what would you improve? Thank you ☺
1.How do I make the width smaller for mobile version? 2.Any more critic is welcomed, what would you improve? Thank you ☺
Nice Job :)
1 . Add this to card div
.container { width: 85%; max-width: 450px; } so now at small view port (mobile version) it will take 80% of width and on desktop width will be 450px
2 . Do this to fix image size
img{ max-width: 100%; height: auto; }
3 . Also you can combine border-radius by writing one line border-radius: 1rem;
keep coding :)