Here is my site here: Link
I looked around a little, but could not find what I was looking for. I am trying to use a CSS gradient for the background of my site, but it does not change correctly. Instead, it will repeat when you have to scroll. Even with the repeating background not repeating, I still have this problem. Does anyone know what my problem is? Here is my css.
html{ height:100%; } body {font: 14px/normal Tahoma, Arial, Helvetica, sans-serif; height: 100%; min-height:100%; margin:0; background-repeat:no-repeat; background-attachment:fixed; background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#ccc)); background-image: -moz-linear-gradient(top, #000, #ccc); background-image: -o-linear-gradient(top, #000, #ccc); background-image: linear-gradient(top, #000, #ccc); }
source share