Design comparison
SolutionDesign
Solution retrospective
I am new here!!! All feedbacks are welcome.
Community feedback
- @angusgeePosted about 1 year ago
Hi Fallou, and welcome! π
Let me give you some tips to point you on your way.
The background needs to be a different colour to the component. You will therefore need a div (divider) of some sort in your markup (html) to apply the styles.
You could do and will see people doing this:
<body> <div> <img /> <h1></h1> <p></p> </div> </body>
but we can use a more semantic approach:
<body> <main class="container"> <img /> <h1></h1> <p></p> </main> </body>
So, what you need to do now is learn to target these elements with css selectors π GL
0@falloumacbookPosted about 1 year ago@MaltaWebDev thank you so much, i will work on that.
1
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