How can I ensure that an image at the top of a page functions as a background with 100% width on large screens, maintains a minimum width of 1000px, and doesn't display a scroll bar on screens smaller than 1000px?
Below is the code I have been working with:
<img alt="Bg1" src="/assets/bg1.png" style="width:100%; min-width:1000px;
min-height:600px; height:100%; position:absolute; z-index:-1" />
UPDATED: View jsfiddle example - http://jsfiddle.net/c982gko9/
Note: The image must always remain at the top of the page, so the use of position:fixed is not suitable...