背景大小
background-size: 50% 50%;//宽 高background-size: 100px 100px;//宽 高background-size: cover;//覆盖,图片会完全覆盖盒子,有可能显示不完整,缩放是等比例的background-size: contain;//包含,背景图片会完全等比例,显示盒子中,有可能不会铺满盒子
背景裁剪
background-origin: border-box;//设置背景原点为border-boxbackground-clip:content-box;//只显示content区域
backgrond-clip:1、border-box 2、padding-box(默认padding) 3、content-box
多背景图片
background: url(images/bg1.png) no-repeat left top,url(images/bg2.png) no-repeat right top,url(images/bg4.png) no-repeat left bottom,url(images/bg3.png) no-repeat right bottom,url(images/bg5.png) no-repeat center center;