css代码添加背景图⽚常⽤代码
本⽂转载于:猿2048⽹站
css代码添加背景图⽚常⽤代码
1 背景颜⾊ { font-size: 16px; content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;">
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
语法:{ font-size: 16px; content: ""; display: block; width: 700px; height: 0px; margin: 20px 0px;"> 说明:参数取值和颜⾊属性⼀样
路由器桥接
注意:在html当中,要为某个对象加上背景⾊只有⼀种办法,那就是先做⼀个表格,在表格中设置完背景⾊,再把对象放进单元格。这样做⽐较⿇烦,不但代码较多,还要为表格的⼤⼩和定位伤些脑筋。现在⽤css就可以轻松地直接搞定了,⽽且对象的范围很⼴,可以是⼀段⽂字,也可以只是⼀个单词或⼀个字母。
例⼦:给部分⽂字加背景颜⾊给部分⽂字加背景颜⾊
表格背影颜⾊:"; display: block; width: 700px; height: 0px; margin: 20px 0px;"> 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%
1匹空调 right = right center = center right = 100% 50%
bottom left = left bottom = 0% 100%
bottom = bottom center = center bottom = 50% 100%
bottom = bottom center = center bottom = 50% 100%
bottom right = right bottom = 100% 100%
注意:参数中的center如果⽤于另外⼀个参数的前⾯,表⽰⽔平居中;如果⽤于另外⼀个参数的后⾯,表⽰垂直居中。
6. 背景样式:background
语法:{background:背景颜⾊|背景图象|背景重复|背景附件|背景位置}
作⽤:背景属性是⼀个更明确的背景—关系属性的略写。以下是⼀些背景的声明:
例⼦:
body { background: white url(/foo.gif) }
blockquote { background: #7fffd4 }
p { background: url(../backgrounds/pawn.png) #f0f8ff fixed }
table { background: #0c0 url(leaves.jpg) no-repeat bottom right }
注意:当⼀个值未被指定时,将接受其初始值。例如,在上述的前三条规则,背景位置属性将被设置为0% 0%。为了避免与⽤户的样式表之间的冲突,背景和颜⾊应该⼀起被指定。
怎么查通话记录本⽂转载于:猿2048➽
转载于:my.oschina/u/4191619/blog/3095215