对于CSS中 background:transparent none repeat scroll 0% 0%;的理解

Posted 卡布奇诺Princes

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对于CSS中 background:transparent none repeat scroll 0% 0%;的理解相关的知识,希望对你有一定的参考价值。

对于很多人对    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属性进行设置的时候 他就会使用这用设置。

以上是关于对于CSS中 background:transparent none repeat scroll 0% 0%;的理解的主要内容,如果未能解决你的问题,请参考以下文章

BeautifulSoup,但对于 CSS?

我对于层次选择器的理解~

这应该是 stylelint 中对于 CSS 的一个 bug

在@font-face CSS 规则中,'local' 值(对于'src' 属性)不再起作用了吗?

对于css的简化属性

对于CSS中 background:transparent none repeat scroll 0% 0%;的理解