Design comparison
SolutionDesign
Solution retrospective
The background image does not appear entirely right for me, in the upper left corner it is not transparent
Community feedback
- @juandadevPosted over 4 years ago
Hello Lizzard!
Your design is so accurate.
To fix the upper left corner you may want to change a little bit the structure of the layout:
- Remove the
background-image
from the<body>
, just keep thebackground-color
. - Add another
<div>
container only for the background image. This needs to be a child of<body>
. To place it under all elements give it a negative value toz-index
like -1, if this doesn't work maybe you need to change thez-index
of-container
to a value above -1 like 0. - Set the
position
of this container toabsolute
, then place it at the bottom. - Finally, just add a border-radius to the upper left corner with
border-top-left-radius
.
Hope you could understand me. Happy coding! 😁
2@LizzardMedeirosPosted over 4 years ago@Juandamartn, thanks a lot for help! I will make these changes soon! S2
0 - Remove the
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