CSS background
- # div比图片大,图片横竖重复放 。(默认)
- background-image: url('图片地址');
- # div比图片大,不重复添加
- background-repeat: no-repeat;
- # div比图片大,横向重复添加
- background-repeat: repeat-x;
- # div比图片大,竖向重复添加
- background-repeat: repeat-y;
- # 横向移动图片位置,默认0
- background-position-x: 0px;
- # 竖向移动图片位置,默认0
- background-position-y: 0px;
- # 横向竖向移动图片位置,值1横,值2竖
- background-position: 0px 0px;