background-image , background-repeat and background-position (among other things) will be implicitly set to default values ββwhen you leave them in the shortened property. This is how shorthand property works (for the most part).
The calculated background styles look something like this:
background-color: #000000; background-image: none; background-repeat: repeat; background-position: 0% 0%;
So, yes, the values ββyou specified in the first abbreviated ad will be lost.
Boltclock
source share