whitespace=bg image
https://i.stack.imgur.com/FbxQZ.png
CODE: html
<div class="container">
<div id="content">
<div id="item1"></div>
<div id="item2"></div>
<div id="item3"></div>
</div>
</div>
css
body {background:url(image.jpg);}
.container {width:100%; height:50%; overflow-x:scroll;}
#item1, #item2, #item3 {height:100%; width:50%;}
I have searched but all answers say to use a transparent-to-white *gradient. I have a bg image (not in pic attached - sorry) that I want it to fade out to. I have seen this on other sites, I assume JS?