I'm currently building a login page to my website and it has a linear gradient as the background. But the linear gradient is repeating.
Here's my CSS:
body {
background-image: linear-gradient(to bottom, white, grey);
height: 400%;
width: 400%;
}
How am I supposed to prevent this from happening?