CSS multiple backgrounds
by jimmyt1001
HTML
<div class="multiple-backgrounds">
</div>
CSS
div {
width: 500px;
height: 300px;
}
.multiple-backgrounds {
background:
url(https://cdn2.dustygroove.com/images/products/h/haines_nath_zootallur_101s.jpg) 0% -1% no-repeat,
url(https://cdn2.dustygroove.com/images/products/n/nufsaid~~~~_rise~~~~~_101s.jpg) 100% 0% no-repeat,
url(https://cdn2.dustygroove.com/images/products/g/gainsb_serg_lepacha20_101s.jpg) 0% 100% no-repeat,
url(https://cdn2.dustygroove.com/images/products/r/rempis_dave_ithra~~~~_101s.jpg) 100% 100% no-repeat;
background-color: #fbaf5d;
}