Design comparison
SolutionDesign
Community feedback
- @rrebolledo90Posted over 1 year ago
Hola, noté que tu imagen de fondo se corta y se repite cuando expandes la pantalla. Noté que incluyeste lo siguiente en tu cuerpo.
body {
font-size: 1.6rem;
margin: 0;
}
Creo que podría corregir la imagen de fondo si incluye lo siguiente: Esto expandirá la imagen para toda la ventana gráfica y también evitará que la imagen se repita.
body {
background-image: url(bg-desktop.svg);
background-size: contain;
height: 100vh;
background-repeat: no-repeat;
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