I have some trouble with a website I'm making for a school project. I have a gradient background but it repeats vertically, it is especially noticeable when you zoom out. Here's a photo: repeating background
Here's the code for the css (I'm guessing this is where the problem originates):
html {
background: #45aa99; /* Old browsers */
background: -moz-linear-gradient(top, #10aaff 0%, #2288aa 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,10aaff), color-
stop(100%,#2288aa)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #10aaff 0%,#2288aa 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #10aaff 0%,#2288aa 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #10aaff 0%,#2288aa 100%); /* IE10+ */
background: linear-gradient(to bottom, #10aaff 0%,#2288aa 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#10aaff',
endColorstr='#2288aa',GradientType=0 ); /* IE6-9 */
}
I would like the webpage to gradient for the entire length of the site no matter the zoom. Any idea how to do this? Thanks!