I\'m trying to get a background image of a HTML element (body, div, etc.) to stretch its entire width and height.
Not having much luck. Is it even possible or do I h
The following code I use mostly for achieving the asked effect:
body { background-image: url('../images/bg.jpg'); background-repeat: no-repeat; background-size: 100%; }