my Question ist about background-size. I wanne use with multiple values.
My Css Code is like this
background-image: url("../img/redlinie.png"), url("../img/umkleidekabine.png");
background-repeat: repeat-x, no-repeat;
background-size: initial, cover
For the first image redlinie.png i need no sizing at all. I just need sizing for the 2nd PNG. But here the Problem. It seems that it isnt allowed to have inheritor initial to be the first value?
Is there some kind of "trick" that i can set multiple background images with no background-size for the first png, but with contain for the 2nd PNG?