
Design comparison
Solution retrospective
I am proud of the speed I developed this in and that I started using SCSS.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @hl-wong
Hello there. Good job on completing this challenge.
@media screen and (width <= 768px) { .l-card__shadow { width: 50%; } } @media screen and (max-width: 480px) { .l-card__shadow { width: 80%; } }
I just seen your code and preview site. Based on the code above you have write in sass file, I can suggest you to use
max-width
for your card component.<span class="c-card__creator__text">Creation of </span> <p class="c-card__creator__name">Jules Wyvern</p>
And this part of code in html, I suggest you should put the
<span>
tag inside the<p>
tag like the code below.<p>Creation of <span>Jules Wyvern</span></p>
Good luck, and happy coding! :D
Marked as helpful
Join 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