引入背景图片:
background: image url("路径")
设置背景尺寸:
background-size: auto自动大小,默认
background-size: cover保持图片大小,等比例缩放,平铺整个区域,如果尺寸大于容器则会超出
background-size: contain平铺整个区域,图片不会超出容器尺寸(非等比例缩放)
背景平铺方式:
background-repeat: no-repeat不铺满
background-repeat: repeat-x水平方向平铺
background-repeat: repeat-y垂直方向平铺
background-repeat: repea默认铺满
背景位置:
background-position: 20px 10px可以取负值(反方向)
背景定位:
background-attachment: fixed
背景渐变(可以进行多个颜色):
background-image:linear-gradient(to top,red,blue