What happens when we set background to linear-gradient() like this.

The color changes from white at the top to gray at the bottomThe color changes from gray at the top to white at the bottomThe color changes from white on the left to gray on the right<html> <head> <style> h1 { background: linear-gradient(white, gray);}</style> </head> <body> <h1>The Gray</h1> </body> </html>]]>

The color changes from white at the top to gray at the bottom.