2014-09-14 7 views
-1

J'ai ce code pour mon arrière-plan:image de fond défilement

body{ 

     background:url(pics/bg.jpg)no-repeat center center;background-size:cover;} 

        } 

Le problème est que lorsque je fais défiler la page vers le bas les rouleaux d'image et je ne veux pas: S'il vous plaît aider

Répondre

0

Le problème est que vous n'avez pas utilisé background-attachment: fixed. Il y a 2 façons de le faire:

body{background:url(pics/bg.png)no-repeat center center fixed;} 

ou

body{background:url(pics/bg.png)no-repeat center center; 
background-attachment:fixed;} 
0

Vous voulez background-attachment: fixed.

1

Vous devez ajouter background-attachment: fixed; et supprimer un} comme ceci:

body { 
    background:url(pics/bg.jpg)no-repeat center center; 
    background-size:cover; 
    background-attachment: fixed; 
    }