HTML CSS FLEXBOX

Solution retrospective
Doesnt look so good.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @correlucas
👾Hello Nelson Uprety, Congratulations on completing this challenge!
Your component is okay but its missing the vertical alignment. The best way to do it is by using
flexbox
. First step is to addmin-height: 100vh
to make the body height size becomes 100% of the screen height, this way you make sure that whatever the situation the child element (the container) align the body and then use the flex properties for alignment withdisplay: flex
/align-items: center;
/justify-content: center;
} body { min-height: 100vh; background-color: #0e8387; display: flex; }
To add the two
wave
svg background images in the (top/bottom),, the best way is by usingbackground-image
to manage it since adding them to thebody
you make sure it will be under everything, to manage different images inside a single css property asbackground-image
you use the comma inside each properties declare the single modification for each circle separated. See the code below to see your solution with those backgrounds applied:body { background-image: url(images/bg-pattern-top.svg), url(/images/bg-pattern-bottom.svg); background-position: left -185px top -236px, right 10px bottom -300px; background-repeat: no-repeat; background-attachment: fixed; background-size: contain, contain; background-color: #0e8387; }
✌️ I hope this helps you and happy coding!
- @harika09
Nice work with this.
try to add the details, box and like on a container Example <main class="container"> <div class="details">...</div>
<div class="box">...</div> <div class="like">...</div> </main>also add no-repeat on the background image
then on the css add 100vh on the main
Join 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