摘自《网页开发手记》
1、效果:图片不随滚动条的拖动而变化
2、知识点:css background属性
background:背景色 背景图片路径 背景平铺方式 背景是否固定 背景定位;
3、html代码:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>固定背景图片</title>
<style type="text/css">
*{
margin: 0px;
padding: 0px;
}
#all{
width: 400px;
height: 1500px;
margin: 0px auto;
font-weight: bold;
background: url("bg.gif") no-repeat fixed center top;
}
</style>
</head>
<body>
<div id="all"></div>
</body>
</html>