I have set up a JSFiddle for reference: http://jsfiddle.net/AsHW6/
My task involves centering the down_arrow.png images within their respective div containers. I have successfully centered the up_arrow.png images using auto margins. These images are positioned at the bottom of the divs using the fixed property, ensuring they remain at the bottom regardless of screen resolution.
Can anyone advise on the best method to center a bottom-fixed image within the width of its container div?
Here is some code snippet from the provided JSFiddle (I am experiencing difficulty with StackOverflow formatting):
.scroll-arrow-down {
position: fixed;
bottom:0;
}
Note that I do not require any IE-specific hacks or workarounds, as this application will not support IE. Your feedback and suggestions are welcomed.