css background gradient doesn 27t repeat

Solutions on MaxInterview for css background gradient doesn 27t repeat by the best coders in the world

showing results for - "css background gradient doesn 27t repeat"
Rafferty
13 May 2019
1/*Apply the following:*/
2html {
3    height: 100%;
4}
5body {
6    height: 100%;
7    margin: 0;
8    background-repeat: no-repeat;
9    background-attachment: fixed;
10}
11