I am attempting to ensure that two images have the same dimensions without altering the size of the first image.
My current code looks like this:
background-image: url("1.png"), url("2.jpg");
background-position: 3% 10%, 83% 27%;
background-size: auto, 83% 27%;
background-repeat: no-repeat, no-repeat;
position: relative;
I have previously attempted to leave the first value for background-size blank, but it did not produce the desired result.
Any help is greatly appreciated.