Design comparison
Solution retrospective
Was a fun challenge, feel free to review my code!
Community feedback
- @techantherePosted almost 3 years ago
Some common practices include: use classes instead of combinators in CSS for example use of <section class="info"> and then it can be easily accessed in CSS for styling by using class selector .info{ }. Combinators or pseudo-classes should be used only when it gets harder to select the target element otherwise. One trick here, you can use opacity level with second section "Why us" instead of mix-blend-mode. such as background: hsla(color code, alpha) where alpha sets the opacity. This way the background's opacity can be set between 0 and 1, for example
background: hsla(179, 62%, 43%, 0.8);
Marked 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