CSS - pièce jointe en arrière-plan
La description
background-attachment détermine le contexte de mosaïque et l'état de défilement d'une image d'arrière-plan.
Valeurs possibles
scroll - Une image d'arrière-plan définie pour faire défiler défilera avec le reste du document.
fixed - Une image d'arrière-plan définie sur Fixe restera verrouillée pendant que le reste du document défile.
S'applique à
Tous les éléments HTML.
Syntaxe DOM
object.style.backgroundAttachment = scroll | fixed;
Exemple
<html>
<head>
</head>
<body>
<p style = "background-image:url(/images/logo.png);
background-attachment:scroll;
background-attachment:scroll;
background-repeat: no-repeat;
background-attachment: fixed;">
This parapgraph has scrolling background image.
This parapgraph has fixed repeated background image.
This parapgraph has fixed repeated background image.
This parapgraph has fixed repeated background image.
This parapgraph has fixed repeated background image.
This parapgraph has fixed repeated background image.
</p>
</body>
</html>
Il produira le résultat suivant -