Design comparison
SolutionDesign
Solution retrospective
I would appreciate any feedback.
Community feedback
- @afrusselPosted about 3 years ago
Good work. Nice try. Use the below code for image section.
.img-mono { -webkit-filter: grayscale(100%); filter: grayscale(100); opacity: 0.8; mix-blend-mode: multiply; }
Marked as helpful3 - @darryncodesPosted about 3 years ago
Hi Matthew,
Great solution!
It might be worth resolving your accessibility report as a good practice change
<div class="container">
to<main class="container">
and<div class="attribution">
to<footer class="attribution">
. Also have at least one<h1>
in your design.All the best!
Marked as helpful1 - @pikapikamartPosted about 3 years ago
Hey, great work on this one. You already have some feedbacks from others, but i'm just going to add some.
- On your
body
tag, avoid using a fixedheight: value vh
property, on your caseheight: 98vh
will limit your element's height based on the remaining viewport's height. If you inspect your layout in dev tools at the bottom, hover on thebody
tag, you will notice that it doesn't really captures the whole content like it should do. Instead, replace that withmin-height: 100vh
, this will expand the container if it needs to. - Remove the
width: 100vw
on thebody
tag, this creates a horizontal scrollbar. - The information about the company should have been wrapped inside a
ul
andli
element, since those are list of information. - The text as well for the company information, using heading tags on those is not really great because it doesn't really add any more information. Better to just use a
p
tag on them, I am talking about the10k+
elements.
Aside from those, great work.
Marked as helpful0@matthewohreluyPosted about 3 years ago@pikamart Thanks for the feedback! Appreciate it.
0 - On your
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