I have an image, and I want the width to fill up the browser window, no matter the size of the window.
How do I do this in HTML and CSS?
You can add a div with width an height of 100%, also set image's width and height are 100%
CSS:
#wrapper, img{ width:100%; height: 100%; }
jsfiddle