Design comparison
Solution retrospective
Hi!! Anyone can help with the hover over the image bit? The exercise tells you to add an icon at the center of the crypto image but I have no idea how to do that. Any documentation /video?
Thanks!!!
Community feedback
- @AdrianoEscarabotePosted almost 2 years ago
Hello EDOARDO PITACCIO, how are you? I truly loved your project's outcome, however I have some advice that I hope you'll find useful:
You could have used a h1 to make the project more accessible. Every page must have a level 1 header that identifies the primary title and follows the h1-h5 format for screen readers.
<h1>Equilibrium #3429</h1>
To align some content in the center of the screen, always prefer to use
display: flex;
it will make the layout more responsive!body { margin: 0; padding: 0; display: flex; align-items: center; flex-direction: column; justify-content: center; min-height: 100vh; }
The remainder is excellent.
I hope it's useful. 👍
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