Design comparison
Solution retrospective
I’m excited to see how closely I can match the original design with each project, and every new challenge brings a fresh perspective on working with JavaScript. These experiences motivate me to keep learning and never stop improving.
What challenges did you encounter, and how did you overcome them?I encountered a problem when trying to add a linear-gradient to the following CSS style:
.instagram { border-top: 1px solid linear-gradient(red, blue); }
This didn’t work, so I had to try a different approach:
.instagram { border-top: 1px solid; border-image: linear-gradient(red, blue); }
While this worked, the issue is that the border-radius isn’t being applied.
What specific areas of your project would you like help with?The issue lies with the border-radius, and I’d be happy to hear your feedback on these projects.
Community feedback
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