background-positionプロパティは、背景画像の表示開始位置を指定するプロパティです。
背景画像の表示開始位置を%値や数値で指定する場合には、値を横方向・縦方向の順にスペースで区切って指定してください。
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>