I am experiencing an issue with a slider div that has a background image on it. The background image is too large, so it is currently centered. You can see the issue here: http://jsfiddle.net/s5qvY/
<div id="slider"></div><hr><hr><img src="http://hdwallpaper2013.com/wp-content/uploads/2013/02/Download-Flower-Background-Images-HD-Wallpaper.jpg" width="100%" />
#slider
{
width: 100%;
height: 100px;
background-size: 100% auto;
background-position: center;
background-image: url('http://hdwallpaper2013.com/wp-content/uploads/2013/02/Download-Flower-Background-Images-HD-Wallpaper.jpg');
}
Currently, I am trying to find a way to move the image up or down, relative to its centering. I found a potential solution that involves using padding-top and margin-bottom properties, but unfortunately, it only allows me to push the image up, not down. Negative margins do not seem to work for moving the image down. Do you have any ideas for how I could achieve this?