What would be the best method to implement a fullscreen background that is resized based on the resolution/browser size?
would a fluid css layout be best... i just know when i do it w/ css - and move the browser in so it's more vertical.. the background image doesn't extend to the bottom...
like so
or with javascript?HTML Code:#background { z-index:-6; position:absolute; top:0; left:0; width:100%; height:100%; <div id="background"> <img src="graphics/bg-1.jpg" width="100%"alt="crowd"> </div> }
thanks