Design comparison
SolutionDesign
Solution retrospective
Por favor alguien tiene información sobre el manejo de imágenes SVG, dentro del CSS.
Community feedback
- @correlucasPosted about 2 years ago
👾Hello CARLOS ALBERTO , congratulations for your new solution!
Your solution seems great, but you've a little issue with the background thats not taking the screen full width and is getting cropped.
Here's how you can fix it:
Replace all the properties for the background inside the body this way you've it displaying full screen with this property
background-size: contain;
, copy and paste code below to fix it:body { background-image: url(images/pattern-background-desktop.svg); background-repeat: no-repeat; background-size: contain; margin: 0; padding: 0; font-size: 16px; background-color: hsl(225, 100%, 98%); font-family: 'Red Hat Display', sans-serif; }
👋 I hope this helps you and happy coding!
Marked as helpful0
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