Latest solutions
Latest comments
- @JSegundoSubmitted over 3 years ago@vinaypuppalPosted over 3 years ago
Hey, seems like it's trying to load from
https://jsegundo.github.io/images/image-header-mobile.jpg
instead ofhttps://jsegundo.github.io/FE-Mentor-card/images/image-header-mobile.jpg
.The reason is you referenced it from the root folder in your
style.css
i.e/images/image-header-mobile.jpg
instead of../images/image-header-mobile.jpg
This may have worked locally because
/
points to your project folder but in GH pages/
does not point to this project repo folder.I hope this is clear if not let me know.
Marked as helpful0 - @JanBlahoutSubmitted over 3 years ago@vinaypuppalPosted over 3 years ago
Hey, I hear you. Flexbox can be a little hard to start with, for me, this video series from wesbos helped me to understand it easily.
Regarding you question, the reason is because of
overflow: hidden
andmax-height: 446px;
on.container
class.1 - @abdulrahman-rwimSubmitted over 3 years ago@vinaypuppalPosted over 3 years ago
Hey, looks good. Take a look below 370px,
- The card is touching the edges adding some padding around the card should fix it.
- The attribution text is overlapping with card
Marked as helpful1 - @xsrpmSubmitted over 3 years ago@vinaypuppalPosted over 3 years ago
Hey, overall your solution looks good. Few suggestions
- Make sure vertical align the card.
- Add some box-shadow to the card
- Check some HTML and ACCESSIBILITY issues reported here
- Add padding around the card for small screens(i.e below 330px), at present it's touching the edges of the screen
Marked as helpful1