Design comparison
Solution retrospective
Hey coders . Heres my solution to this challenge . Still mising the mobile version but i will update it later this week !
Cheers !
Community feedback
- @PhoenixDev22Posted over 2 years ago
Hello @thanosballo,
I have some suggestions regarding your solution :
-
Use landmark <main> to wrap the body content.HTML5 landmark elements are used to improve navigation
-
You can use an ordered list
<ul>
for thestats
thisclass="footer"
. -
The number and word have to be read together to make sense so need to be in the same meaningful element. so only a
span
or maybestrong
tag needs to wrap the numbers. the words likecompanies
should not be in paragraph tags. They don't need to be wrapped in anything as they are already inside a meaningful element (list item). -
Height 100vh
on this is causes the content to be cut off on mobile. Change tomin-height
. This also allows the body to to grow taller if the content outgrows the visible page.
/* remove this */ .imagecontainer::before { position: relative; }
-
To improve the image overlay effect you should use blend modes. you can use background color, Use mix-blend mode and opacity to make it more like the design.
-
You should use
em
andrem
units .Bothem
andrem
are flexible, Usingpx
won't allow the user to control the font size based on their needs Check the responsiveness again .
Overall , your solution is good, Hopefully this feedback helps.
Marked as helpful0 -
- @GitHub-dev12345Posted over 2 years ago
You want To reduce Accessibility Change this code:
<div class="bigcont"> to <main> (Used main tag);0 - @GitHub-dev12345Posted over 2 years ago
Congratulation to complete the challenge ❤️👍 My small suggestion : 1.In Card design Used This CSS Code:
transform : scale(0.8); this property decrease the size of card. 😉
large size for increase the number of scale & small size for decrease the number of scale
I hope you find this helpful
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