css background static? -



css background static? -

if wanted background deosnt move(stays static) page moves when scrolling, if mean!!

this background code:

background: #fff url(back1.png) ;

as you're using shorthand background property, add together fixed end of rule:

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

this background-attachment property, if expand out it's this:

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

css

Comments

Popular posts from this blog

Using Android Volley to post an array to PHP -

python - How to add an model instance to a django queryset? -

angularjs - No 'Access-Control-Allow-Origin' error from local domain to public API -