css background static? -


If I want a background that is deosnt move, then only the page moves when scrolling, What do you say to me !!

This is my background code:

  Background: #fff url (back1.png);  

As you are using the shortcodes background property , Just add fixed at the end of the rule:

  background: #fff url (back1.png) is fixed;  

This is actually background-attachment property, so if you expand it then:

  background-color : #fff; Background-image: url (back1.png); Background-attachment: fixed;  

Comments