CSS-背景

10次阅读
没有评论

共计 401 个字符,预计需要花费 2 分钟才能阅读完成。

背景位置 background-position

参数代表的意思是:x 坐标和 y 坐标,可以使用方位名词或者精确单位

参数值 说明
length 百分数 由浮点数和单位标识符组成的长度值
position 百分数 top、center、bottom、left、center、right

背景固定(背景附着) background-attachment

参数 作用
scroll 背景图像是随对象内容滚动(默认)
fixed 背景图像固定

背景属性复合写法

当使用简写属性时,没有特定书写顺序,一般习惯约定顺序为:
background: 背景颜色 背景图片地址 背景平铺 背景图片滚动 背景图片位置

background: color image repeat attachment position;

background: black url(image.jpg) no-repeat fixed center;

背景颜色半透明

background: rgba(0, 0, 0, .3);

正文完
 0
qiaofugui.cn
版权声明:本站原创文章,由 qiaofugui.cn 于2024-05-20发表,共计401字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码