CSS 背景

1、背景图片语法
background-image:url() 引入背景图片
background-repeat:no-repeat 设置背景图片是否重复平铺

属性值:
repeat: 背景图像将向垂直和水平方向重复。这是默认
repeat-x: 只有水平位置会重复背景图像
repeat-y: 只有垂直位置会重复背景图像
no-repeat: background-image不会重复
inherit: 指定background-repea属性设置应该从父元素继承

background-color: 指定要使用的背景颜色
background-position : 指定背景图像的位置
background-size : 指定背景图片的大小
background-origin: 指定背景图像的定位区域
background-clip:指定背景图像的绘画区域
background-attachment: 设置背景图像是否固定或者随着页面的其余部分滚动
background-image: 指定要使用的一个或多个背景图像
background-position:left top 设置图片的css背景定位,left代表靠左,top代表靠上

简写背景图片语法:

background:bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit;

你可能感兴趣的:(CSS 背景)