Design comparison
SolutionDesign
Solution retrospective
How to improve the responsivity?
Community feedback
- @etblinkPosted about 3 years ago
Two very quick and easy fixes. First off, for your images simply add a period (.) in front of the relative URL path in your img element of the HTML file. That way the browser knows where to look for your image. For example <img src="./images/picturename.jpg">
To answer your question and make your form more responsive simply go into your main class selector in your css file and add a width property and make it into a fixed unit of measure and change the max-width into a relative unit of measure. For example
.main { width: **px; max-width: **vw; }
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