I\'d like to deploy a background image in the body of my website that scales down with the window resolution, but does not scale up beyond it\'s original size (1920x1080). T
I would use a div as a wrapper with a max-width and set the background to that div.
HTML
Content
CSS
.container { width: 100%; max-width: 1920px; /* YOUR BG MAX SIZE */ background:url("bg.png") no-repeat; background-size: 100%; }