I use the following code for a background image on the body. This does render on the preview but I wanted to point out that it does not render in BSS it's self. Cover does so I just wanted to point this out. I use viewport for default and cover for fall back.
body{
background-image:url(pic_sitebg.jpg);
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center center;
background-size:cover;
background-size:100vw 100vh;
}
Saj