fixed
background:背景颜色 背景图片 是否平铺 背景固定还是滚动 背景位置
#p1 {
width: 300px;
height: 300px;
background-color: blue; /*默认是transparent透明的*/
/* background-color: transparent; */
background-image: url(Images/2.jpg);
background-repeat: no-repeat; /*不平铺,默认是水平垂直平铺*/
/* background-repeat: repeat-y; */
/* background-repeat: repeat-x; */
/* background-position: right bottom; */
background-position: 10% center;
background-attachment: fixed;
}