Latest solutions
Latest comments
- @dan-ayalahdez@jesufemigan
Great work Daniel!
Regarding responsiveness, you should only use media queries if you realize the display for a particular screen size does not meet the design requirement or does not look good as the case may be. Note that by default HTML is responsive on all screens, devs are the ones that alter the responsiveness. There are some cases where you need to define media queries for all screen types but always ensure that your styling is optimal to ensure you only use media queries only when necessary.
Marked as helpful - @Aaryn-Robinson@jesufemigan
Your Image folder was not pushed to github
- @whitesoftx@jesufemigan
Awesome work! You can add letter spacing to the span tag in the "stats-content" class and increase the font-size
Marked as helpful - @Pubstar@jesufemigan
Good work! A better way to position to "See All" button will be to use the "display: grid". To avoid the issue of other icons moving a few pixels down, I think this is because you did not add "box-sizing: border-box;" as a global style either in the body tag or create an "all" tag using *.
e.g * {box-sizing: border-box;}
- @luciferad@jesufemigan
Great work! In your 'What you learned section' on your readme.md file, to position a block element in the center of a container, for the 'item' class you can as well do this.
.item { position: absolute; left: 0; right: 0; margin-inline: auto; }
Marked as helpful - @WesleyBobb25@jesufemigan
Awesome work! you need to add/increase the font-weight of both the h1 and p2 tag
Marked as helpful