Could someone explain to me what this portion of code means?
repeat scroll 0 0 #F6F6F6;
I have googled a lot and only found syntax to this part
-moz-linear-gradient(center top , #FFFFFF, #EFEFEF)
My code:
background: -moz-linear-gradient(center top , #FFFFFF, #EFEFEF) repeat scroll 0 0 #F6F6F6;
Thanks!
These are actually part of the
backgroundCSS property, not-moz-linear-gradient. Have a look at that link, it should explain.Basically:
repeat: The background repeats!scroll: When the page scrolls, the background scrolls too0 0: Says, “start the background from this point in the image”.All the extra stuff is probably unneccessary – they seem to be the same as the defaults.