background-repeatプロパティは、背景画像のリピートの仕方を指定する際に使用します。
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>