カテゴリー
background-attachment CSS

【CSS】background-attachment:背景画像の固定・移動

(例)【CSS】background-attachmentの使用方法

See the Pen
background-position
by linlin (@linlin098765)
on CodePen.

<body>

  
</body>
body {
background-image: url("https://www.llc-linlin.com/picture/SEO.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom
}

【CSS】background-attachment:背景画像の固定・移動

 CSSのbackground-attachmentは背景画像を画面スクロールした際に固定状態にするか、スクロールと同時に移動させるか指定するプロパティです。