Design comparison
SolutionDesign
Solution retrospective
I have user a hover effect on the profile picture so that viewers can view the picture clearly. Is it something necessary? Do mention your suggestions on itπ.
Community feedback
- @BlackpachamamePosted 10 months ago
Good job!
Here are some comments that may help you:
- Use semantic tags such as
main
,footer
,figure
, etc, this helps the accessibility and SEO of the site - The
<div class="container">
should be<main class="container">
- The
<div class="attribution">
should be<footer class="attribution">
. Also, you should put it outside themain
and remove theposition absolute
properties, since they will not be necessary. - Instead of using
justify-content: center
andalign-items: center
, you can replace them withplace-content: center
- You do not need to define the
grid-template-columns
andgrid-template-row
in thebody
- Apply
display: block
to the image to remove that annoying white space
Marked as helpful1@tenze21Posted 10 months agowow, thanks a lot @Blackpachamame for your suggestions, they are really helpful.
1 - Use semantic tags such as
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