CSS 背景色. 背景图片. 背景重复. 背景图片固定和定位
body{
height:3000px;
background-image:url(C:/Users/Administrator/Desktop/xxx.png);
background-repeat:no-repeat;
background-position:bottom;/*向下的*/
background-attachment:fixed;
/*给网页3000px高度 来观察背景图像固定属性 background-attachment:fixed*/
}
h1{
text-align:center;
}
p{
background-color:pink;
}
div{
/* 给背景添加图片 一定要注意 图片的取值路径 */
background-image:url(C:/Users/Administrator/Desktop/xxx.png);
background:no-repeat; /* bupingpu */
background-repeat:repeat-x;/*1.background-repeat:repeat-x 我是水平平铺 */
background-repeat:repeat-y;/*2.background-repeat:repeat-y 我是垂直平铺*/
background-attachment:fixed;
/* background-position:5px 6px; */
border:1px solid red;
height:100px;
}