Design comparison
Solution retrospective
NFT card task done /* My difficulty was */
- Creating hover effect on the image
- and the horizontal break line :(.
All your feed backs are Welcome.
Community feedback
- @AliciaT08Posted over 2 years ago
Hi, If you were having trouble with the horizontal rule line, another idea is to instead create a bottom border for your <div class="stats"> container. Then you can add space between the text and the line by adding bottom padding to your div container.
Hope that helps!
Alicia
Marked as helpful1 - @KaptainCS3Posted over 2 years ago
Accessibility issues All page content should be contained by landmarks What does this mean?
0@AliciaT08Posted over 2 years ago@KaptainCS3 This will explain what "landmarks" are: https://www.w3schools.com/accessibility/accessibility_landmarks.php
So, for example, your <div class="attribution"> container should either be inside <footer> tags. Or, what I think is better, is to change the div tag to a footer tag while keeping the class attribute. So you have:
<footer class="attribution"> [contents] </footer>0
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