I have referred this post but wasn't able to figure out how to apply separate background position property for the two images.This is my css properties
css{ background-image: url('...img1.png'), url('....img2.png');
background-position: 0;
background-repeat: repeat,no-repeat;
background-size: 14%;
}
i want to be able to apply separate values for background-position and background-size property without property on one image affect the position and size of the other image.
To be specific, i want image one have default value for background-position while image 2 has property right-bottom
also the size of background image 2 to be 10%.
i have tried doing this but it seems to affect the properties of other background-image.What am I doing wrong?