Search code examples
cssbackground-position

background-position not working if #color instead of image


background:transparent url(../img/fondo_footer.png) repeat-x scroll;
background-position: 0px 140px;

This way the background is vertically moved


background:#01244e;
background-position: 0px 140px;

this way, is not

How can i solve this?


Solution

  • background-position only applies to images according to http://www.w3.org/TR/CSS2/colors.html

    So if you supply a color value, it will apply to the whole element.