qiaofugui
qiaofugui
发布于 2024-05-20 / 0 阅读
0
0

CSS-背景

背景位置 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);

评论