Looking to create a unique design, I decided to use two images as a fixed background in CSS. Here is the code snippet I used:
background: url(images/31.jpg) 100% no-repeat, url(images/12.jpg) 100% no-repeat;
background-position: fixed;
My goal is to make these images fill the browser width completely and have the second image stack vertically after the first one. Despite researching multiple tutorials on using CSS3 for such designs, I encounter an issue - my images seem to be stacking on top of each other instead of aligning properly with the top left corner as Image 1 should. Is there any way to achieve this effect without relying on JavaScript?