Design comparison
SolutionDesign
Solution retrospective
My first challenge with SCSS 😬😬😬 Any feedback will be appreciated.
Community feedback
- @ChamuMutezvaPosted about 3 years ago
see the following article on how to make the background responsive, responsive images
Marked as helpful0 - @ChamuMutezvaPosted about 3 years ago
- to get the effects on the image , use
background-blend-mode
. No need to use the pseudo-element
.wrapper__container .image { background-image: url("/images/image-header-mobile.jpg"); background-size: cover; background-repeat: no-repeat; background-position: center; position: relative; height: 30vh; min-height: 200px; max-height: 480px; background-color: #aa5cdb; background-blend-mode: multiply; // check for a suitable value }
- on medium devices , the image is not looking good .
- the desktop display looks good
Marked as helpful0 - to get the effects on the image , use
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