Design comparison
SolutionDesign
Community feedback
- @VCaramesPosted almost 2 years ago
Hey there! 👋 Here are some suggestions to help improve your code:
- The statistics at the bottom are a list ⚠️, so it should be built using an
unordered List
element.
More Info:📚
MDN <ul>: The Unordered List element
- To get the image to look like the FEM example, you are going to want to use the
mix-blend-mode
along with themultiply
value and include aopacity
with the value of 0.8.
- Your
CSS Reset
is being underutilized. 😢 To fully maximize 💯 it, you will want to add more to it.
Here are some examples that you can freely use:
- Move all of these properties to the
body
and delete thewidth
since it is 100% by default.
.main { width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--main-background); }
If you have any questions or need further clarification, feel free to reach out to me.
Happy Coding! 🎆🎊🪅
1@edwin08torresPosted almost 2 years ago@vcarames thank you, i appreciate that, i got it.
i going to change that things, ty.
1 - The statistics at the bottom are a list ⚠️, so it should be built using an
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