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
Post a Comment