html:
<body>
<h1>Woman</h1>
<p>Every woman is ... You are worth it! </p>
</body>
css:
body {
background: url(images/08.jpg) no-repeat 50% 0 #B94547;/*#B94547给背景添加颜色*/
margin: 10% 20%;
color: #fff;
background-attachment: fixed;/* 背景图片固定,不随文字的滚动而滚动 */
}
h1 {
text-transform: uppercase; /*英文字母全部大写*/
border-bottom: 2px solid #fff;
padding-bottom: 50px;
}
p {
font-size: 20px;
}
解析:页面背景固定主要是给body添加:background-attachment: fixed;