1.重复背景.
<!doctype html public "-//w3c//dtd html 4.0//en">
<html>
<head>
<title>setting the canvas background</title>
<style type="text/CSS">
body { background: url("http://style.com/marble.png") }
</style>
</head>
<body>
<p>my background is marble.
</body>
</html>
2.重复背景.body { background-image: url("marble.gif") }
p { background-image: none }
3.在x或y方向上重复
body {
background: white url("pendant.gif");
background-repeat: repeat-y;
background-position: center;
}
4.在x或y方向上重复时当拖动滚动条时,定位不移动.
body {
background: red url("pendant.gif");
background-repeat: repeat-y;
background-attachment: fixed;
}