glx_56de37973380417c75c17f999823807b.txt CSS background-attachment https://keidweneth.com/ilrRUQJCUIw6T/60695
Accueil

CSS background-attachment

 

CSS background-attachment



The background-attachment property specifies whether the background image should scroll or be fixed (will not scroll with the rest of the page):

Example

Specify that the background image should be fixed:

body {
  background-image: url("img_tree.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: fixed;
}

Example

Specify that the background image should scroll with the rest of the page:

body {
  background-image: url("img_tree.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: scroll;
}


The CSS Background Attachment Property

PropertyDescription
background-attachmentSets whether a background image is fixed or scrolls with the rest of the page
NomE-mailMessage