css代码添加背景图⽚常⽤代码
css代码添加常⽤代码
1 背景颜⾊ {background-color:数值}
2 {background-image: url(url)|none}
3 背景重复 {background-repeat:inherit|no-repeat|repeat|repeat-x|repeat-y}
4 背景固定 {background-attachment:fixed|scroll}
5 背景定位 {background-position:数值|top|bottom|left|right|center}
6 背影样式 {background:背景颜⾊|背景图象|背景重复|背景附件|背景位置}
1.背景颜⾊:background-color
语法:{background-color:数值}
说明:参数取值和颜⾊属性⼀样
注意:在html当中,要为某个对象加上背景⾊只有⼀种办法,那就是先做⼀个表格,在表格中设置完背景⾊,再把对象放进单元格。这样做⽐较⿇烦,不但代码较多,还要为表格的⼤⼩和定位伤些脑筋。现在⽤css就可以轻松地直接搞定了,⽽且对象的范围很⼴,可以是⼀段⽂字,也可以只是⼀个单词或⼀个字母。
例⼦:给部分⽂字加背景颜⾊给部分⽂字加背景颜⾊
表格背影颜⾊:
2. :background-image
语法:{background-image: url(url)|none}
说明: url就是背景图⽚的存放路径。如果⽤“none”来代替背景图⽚的存放路径,将什么也不显⽰。
例⼦:给部分⽂字加背景图⽚ .imgbgstyle { background-image: url(logo.gif)}
3.背景重复:background-repeat
语法:{background-repeat:inherit|no-repeat|repeat|repeat-x|repeat-y}
衡水湖钓鱼
作⽤:背景图⽚ 的是背景图⽚平铺与否,也就是说,结合背景定位的控制可以在⽹页上的某处单独显⽰⼀幅背景图⽚
茄汁牛肉 说明:参数取值范围:
·inherit 继承
·no-repeat 不重复平铺背景图⽚
·repeat
·repeat-x 使图⽚只在⽔平⽅向上平铺
·repeat-y 使图⽚只在垂直⽅向上平铺
订餐 注意:如果不指定背景图⽚重复属性,浏览器默认的是背景图⽚向⽔平、垂直两个⽅向上平铺。
4.背景固定:background-attachment
语法:{background-attachment:fixed|scroll}
说明:参数取值范围
·fixed:⽹页滚动时,背景图⽚相对于浏览器的窗⼝⽽⾔,固定不动
·scroll:⽹页滚动时,背景图⽚相对于浏览器的窗⼝⽽⾔,⼀起滚动
注意:背景图⽚固定控制背景图⽚是否随⽹页的滚动⽽滚动。如果不设置背景图⽚固定属性,浏览器默认背景图⽚随⽹页的滚动⽽滚动。为了避免过于花哨的背景图⽚在滚动时伤害浏览者的视⼒,所以可以解除背景图⽚和⽂字内容的捆绑,该为和浏览器窗⼝捆绑。
例⼦:使背景图案不随⽂字“滚动”的css
body { background: purple url(bg.jpg); background-repeat:repeat-y; background-attachment:fixed }
5.背景定位:background-position
语法:{background-position:数值|top|bottom|left|right|center}
作⽤:背景定位⽤于控制背景图⽚在⽹页中显⽰的位置。
说明:参数取值范围
·带长度单位的数字参数
·top:相对前景对象顶对齐
·bottom:相对前景对象底对齐
·left:相对前景对象左对齐
·right:相对前景对象右对齐
村书记助理 ·center:相对前景对象中⼼对齐
·⽐例关系
关键字解释如下:
top left = left top = 0% 0%
top = top center = center top = 50% 0%
right top = top right = 100% 0%
养肝护肝的食物 left = left center = center left = 0% 50%
含有天和地的成语 center = center center = 50% 50%
right = right center = center right = 100% 50%
bottom left = left bottom = 0% 100%
bottom = bottom center = center bottom = 50% 100%
电脑蓝牙在哪里 bottom right = right bottom = 100% 100%
注意:参数中的center如果⽤于另外⼀个参数的前⾯,表⽰⽔平居中;如果⽤于另外⼀个参数的后⾯,表⽰垂直居中。
6. 背景样式:background
语法:{background:背景颜⾊|背景图象|背景重复|背景附件|背景位置}
作⽤:背景属性是⼀个更明确的背景—关系属性的略写。以下是⼀些背景的声明:
例⼦:
body { background: white url( ) }
blockquote { background: #7fffd4 }
p { background: url(../backgrounds/pawn.png) #f0f8ff fixed }
table { background: #0c0 url(leaves.jpg) no-repeat bottom right }
香港代购怎么赚钱
注意:当⼀个值未被指定时,将接受其初始值。例如,在上述的前三条规则,背景位置属性将被设置为0% 0%。为了避免与⽤户的样式表之间的冲突,背景和颜⾊应该⼀起被指定。