css代码BACKGROUND: none transparent scroll repeat 0% 0%是什么意思?
发布网友
发布时间:2022-04-06 11:04
我来回答
共3个回答
热心网友
时间:2022-04-06 12:33
BACKGROUND: none transparent scroll repeat 0% 0%
第一 你的这句是错的。
但是系统会帮你解释成下面这样。
BACKGROUND:transparent none repeat scroll 0% 0%
分别代表
背景属性:背景颜色 背景图片 背景是否重复 背景时候随浏览器滚动 背景平位置 背景垂直位置
background : background-color || background-image || background-repeat || background-attachment || background-position
transparent表示透明无颜色
none 表示没有设置背景图片
repeat 表示图片重复
scroll 表示背景图片随浏览器下拉而滚动
0%水平位置在x0
0%垂直位置在y0
这个试试是background 的默认这是 ,
也就是说 没有对background属性进行设置的时候 他就会使用这用设置
热心网友
时间:2022-04-06 13:51
谁说人家错了,解释的都很好,但是提醒你,不管是css还是html所有的属性都没有顺序可言,自己可以去百度下,凡是简写的属性书写上都没有顺序。
热心网友
时间:2022-04-06 15:26
css中background可以设置如下属性:
background-color 规定要使用的背景颜色。
background-position 规定背景图像的位置。
background-size 规定背景图片的尺寸。
background-repeat 规定如何重复背景图像。
background-origin 规定背景图片的定位区域。
background-clip 规定背景的绘制区域。
background-attachment 规定背景图像是否固定或者随着页面的其余部分滚动。
background-image 规定要使用的背景图像。
inherit 规定应该从父元素继承 background 属性的设置。
比如background:none transparent scroll repeat 0% 0%可以分解为:
background-image: none;
background-color: transparent;
background-attachment: scroll ;
background-repeat: repeat;
background-position: 0% 0%;