Design comparison
Solution retrospective
Change color on image was hard :D
Community feedback
- @HassiaiPosted over 1 year ago
For a responsive content replace the width in .background with max-width and increase the value for it to be equivalunt to the width of the design
max-width: 400px
.Replace the height in .background with a padding value for all the sides, this will prevent the content from overflowing on smaller screens and its a responsive replacement.
padding: 16px
.To center .background on the page using flexbox or grid, add min-height:100vh; display: flex; align-items: center: justify-content: center; or min-height:100vh; display: grid place-items: center to the body.
To center .background on the page using flexbox: body{ min-height: 100vh; display: flex; align-items: center; justify-content: center; }
To center .background on the page using grid: body{ min-height: 100vh; display: grid; place-items: center; }
Use relative units like rem or em as unit for the padding, margin, width values and preferably rem for the font-size values, instead of using px which is an absolute unit. For more on CSS units Click here
Hope am helpful.
Well done for completing this challenge. HAPPY CODING
Marked as helpful0
Please log in to post a comment
Log in with GitHubJoin 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