Design comparison
Solution retrospective
I'll appreciate any feedback! I had a problem with the hover effect of the main image, because the height of the hover div was 5px bigger than the height of the image. I fixed it with absolute positioning and moved it up by 5px, but I still don't know the reason.
Community feedback
- @Toch007Posted about 2 years ago
Hey there, You did such a great job. It looks so great. I love the way your code is outlined, it looks really nice. The only issue I have with your code is your "img" tag on your HTML. It's best practice for all your img tags to have the "alt" attribute even if it's empty, just make sure it's there. Then the other thing is that you gave your first img tag a width of "100%" which is wrong. The default measurement for the width and height of pictures on HTML is in PX (Pixels) and the px should not be indicated. For example, <img class=
border-rad
src=images/image-equilibrium.jpg
alt=equilibrium
width=100
>, the (width ="100") there means that the width of the picture is 100px, the px should not be indicated on HTML. Asides from this I believe you are good to go. Keep up the good work.Marked as helpful1@PhilalePosted about 2 years ago@Toch007 Thank you for your feedback! I tried changing the width, but it seems to be working. If I set
width=50%
as an attribute of the image, the width of the image is 50%. It also works with other values.1 - @amalkarimPosted about 2 years ago
Hi, Philale.
It's quite interesting case you have here. I was curious myself as to why
<div id="img-main">
is taller than its content. Then I've played and tried several css declarations, until I realize that in order to remove the extra pixels, we have to give<img class="border-rad"...>
a particular style:display: block;
.And I've googled about why this happens. The answer lies in this stackoverflow question. You can also check this other question for a bit longer explanation about this.
Hope this helps.
Marked as helpful1
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