background-attachmentプロパティは、画面をスクロールする際、
背景画像をその位置に固定されたままにするか、スクロールに伴って移動するかどうかを指定します。
body {
background-image: url(“../images/inu01.jpg”);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
:
:
</body>
</html>