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

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -