Design comparison
Community feedback
- @HassiaiPosted almost 2 years ago
Replace <div class="container"> with the main tag, <h3> with <h1> to fix the accessibility issue. click here for more on web-accessibility and semantic html
You forgot to add a background-image with a background-size of contain and a background-repeat of no- repeat. In the media query, you only have to change the background-image.
For a responsive content give .order-form a fixed max-width value. e.g:
max-width: 400px
There is no need to style .container give its styling to the body and don't add a width value to it.
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
0
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