Hey there! Is it possible to have multiple background images stacked on top of each other within a single div? I want the images to resize automatically with "background-size: contain;". Have you tried this before?
background-image: url('../img/image1.jpg'), url('../img/image2.jpg');
background-size: contain;
background-position: center center, bottom right;
I've attempted the following code but haven't had success...
Cheers, John