Hello Experts,
This is a question in CSS.
I have an image with dimensions (width:30px, height: 50px) and I would like to put it as a background for a div with dimensions (width:30px, height: 30px).
I would like to show only the bottom part of the image (20 top px will not be shown).
In IE there is "background-position-y:bottom;" property which does this.
How can I fix this in firefox (by default it shows the top 30px)
Thanks in advace
background-attachment: fixed;
to your div's css.