Design comparison
Community feedback
- @correlucasPosted about 2 years ago
👾Hello Thidar Nyein, Congratulations on completing this challenge!
Amazing solution as always!
1.Use the same size of container and margins/padding to keep all the sections aligned, note that the header is not aligned with the first section due the lateral gap created by a margin.
2.The box-shadow is a bit too strong, this is due the
opacity
andblur
. The secret to create a perfect and smooth shadow is to have low values foropacity
and increaseblur
try this value instead:box-shadow: 12px 7px 20px 6px rgb(57 75 84 / 8%);
If you’re not familiar to box-shadow you can use this site to create the shadow design and then just drop the code into the CSS: https://html-css-js.com/css/generator/box-shadow/
3.To save your time you can code you whole page using
px
and then in the end use a VsCode plugin calledpx to rem
to do the automatic conversion or use this website https://pixelsconverter.com/px-to-remMarked as helpful0
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