Submitted about 2 years ago
Huddle Landing Page using HTML and CSS
@StephenAlcantara
Design comparison
SolutionDesign
Community feedback
- @correlucasPosted about 2 years ago
👾Hello StephenAlcantara, congratulations for your new solution!
🎯 Your solution its almost done and I’ve some tips to help you to improve it:
Make the svg background stop to repeat using
background-repeat: no-repeat
and then usebackground-size: cover
to make it display full height/width:body { background-color: var(--color-primary100); background-image: url(images/bg-mobile.svg); background-size: cover; background-repeat: no-repeat; color: white; font-size: clamp(1rem, 0.95rem + .25vw, 1.25rem); }
✌️ I hope this helps you and happy coding!
Marked as helpful1@StephenAlcantaraPosted about 2 years ago@correlucas Thanks! I forgot to include those properties. I'll add them later!
1
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