实例代码:
<!doctype html>
<head>
<meta charset="utf-8">
<style type="text/css">
body{
background-image:url(img/beijing2.jpeg);
background-repeat:no-repeat;
background-attachment:fixed;
}
</style>
</head>
<html>
<body>
<p>这是一个固定的背景图像实例</p>
<p>图像不会随页面的其余部分滚动。</p>
</body>
</html>
运行效果:
评论