有人可以向我解释这部分代码的含义吗?
repeat scroll 0 0 #F6F6F6;
我搜索了很多内容,但只找到了这部分的语法
-moz-linear-gradient(center top , #FFFFFF, #EFEFEF)
我的代码:
background: -moz-linear-gradient(center top , #FFFFFF, #EFEFEF) repeat scroll 0 0 #F6F6F6;
谢谢!
答案 0 :(得分:4)
这些实际上是background
CSS property的一部分,而不是-moz-linear-gradient
。看看那个链接,它应该解释一下。
基本上:
repeat
:背景重复!scroll
:当页面滚动时,背景也会滚动0 0
:说“从图像中的这一点开始背景”。所有额外的东西可能都是不必要的 - 它们似乎与默认值相同。
答案 1 :(得分:0)
background: <image> <repetition> [scroll] <pos-x> <pos-y> <color>;
答案 2 :(得分:0)
这些是background:
css简写的附加选项。
repeat
重复图像(尽管-moz-linear-gradient不支持重复)。
scroll
(与fixed
相对)允许背景“滚动”
0 0
是x和y坐标,用于放置图片的左上角。
#F6F6F6 is a background color