在背景之后所有这些数字意味着什么?

时间:2011-08-11 16:17:44

标签: html css

我见过:

background: url("images/tabs.gif") repeat scroll 100% 0 transparent;
background: url("images/tabs.gif") repeat scroll 0 0 #BBDDFF;

我不知道括号后面的所有值是什么意思。有没有告诉我的doucment?

我在网上找到的唯一东西是指个人背景道具..

7 个答案:

答案 0 :(得分:3)

链接到w3c规范:

http://www.w3.org/TR/CSS2/colors.html

数字是左侧和顶部定位。

答案 1 :(得分:3)

以下是针对您的使用情况的详细信息:

//First Background

url("images/tags.gif"): background-image (the actual background image)
repeat                : background-repeat (determines if the background repeats)
scroll                : background-attachment (states if it is fixed or scrolls)
100%                  : background-position (top)
0                     : background-position (left)
transparent           : background-color 

<强>同样

//Second Background

url("images/tabs.gif") : background-image
repeat                 : background-repeat
scroll                 : background-attachment
0                      : background-position (top)
0                      : background-position (left)
#BBDDFF;               : background-color

有关更多信息或文档,请查看此问题中的其他一些链接。以下是专门介绍与背景相关的属性的链接:

W3 | CSS (Background-Specific)

答案 2 :(得分:1)

W3表示background简写CSS属性定义为:

  

背景:[&lt;'background-color'&gt; || &LT; '背景图像' &GT; || &LT; '背景重复' &GT; || &LT; '背景附件' &GT; || &lt;'background-position'&gt;] |继承

因此,您可以查看“简单”属性并找出简写。

在你的例子中:

            background-color  background-image       background-repeat background-attachment  background-position
                                                                                              X    Y
background: transparent       url("images/tabs.gif") repeat            scroll                 100% 0 ;
background: #BBDDFF           url("images/tabs.gif") repeat            scroll                 0    0 ;

请注意,我将颜色移回到应该是

的前面

答案 3 :(得分:1)

https://developer.mozilla.org/en/CSS/background

[ <background-color> || <background-image> || <background-repeat> || <background-attachment> || <background-position> ]
|  inherit || <background-color>

答案 4 :(得分:-1)

http://www.w3schools.com/css/css_background.asp

向下滚动到&#34;背景 - 速记属性&#34;。

答案 5 :(得分:-1)

其Css速记

http://www.w3schools.com/css/css_background.asp

阅读“背景 - 速记属性”

答案 6 :(得分:-1)

使用速记属性时,属性值的顺序为:

背景色 背景图片 背景重复 背景附件 背景位置

滚动到本页底部

http://www.w3schools.com/css/css_background.asp