Design comparison
Community feedback
- @HassiaiPosted almost 2 years ago
Replace <aside class="statName" id="companies"> with <p> to fix the accessibility issue. click here for more on web-accessibility and semantic html
To center the main on the page using flexbox, replace the height in the body with min-height: 100vh.
Use the colors that were given in the styleguide.md found in the zip folder you downloaded.
For the color of image, give #imgFilter a background color of soft violet and add object-fit: cover, mix-blend-mode: multiply and opacity: 0.8 to #heroImg
#imgFilter{ background-color: hsl(); } #heroImg{ width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.8; }
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@thekingvicePosted almost 2 years ago@Hassiai thank you! switched to rems recently and used them in the last two solutions i posted! totally forgot that css had blendmodes and i defiantly need to work on web-accessibility. thank you again for the feedback!
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