We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The background image was stretching when resizing the screen. You could fix it setting the background-size to cover;
Once you do it you will see that your image will not cover anymore the entire body, try to set a body height for that.
Last step, to prevent your container to move-slide across the background when resizing , try to use
background-position: center
background-position: center; background-size: cover; height: 100vh;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The background image was stretching when resizing the screen.
You could fix it setting the background-size to cover;
Once you do it you will see that your image will not cover anymore the entire body, try to set a body height for that.
Last step, to prevent your container to move-slide across the background when resizing , try to use
The text was updated successfully, but these errors were encountered: