So erstellen Sie Gradienten -Backgroud -Deckung einer ganzen Seite in HTML
/*Basically, add html height 100%. This will stretch your gradient.*/
html {
height:100%;
}
body {
background-image: /* put gradient here */;
background-repeat: no-repeat;
}
Vivacious Vicuña