You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could the expansion be an optional feature? I'm using CSSOM to perform some specific manipulations on other people's CSS, and if they used the "background" shorthand they probably meant it and wouldn't like it to be expanded to the 8 background-* properties.
I'd be interested in this feature, as I need to manipulate the background-image url, independent of whether it is encapsulated in a broad background statement or not. For now that's possibly the biggest showstopper for me when moving away from JSCSSP.
Browsers mostly store longhand properties rather than shortcuts. When you write
background: rgb(40, 40, 40)
WebKit stores it asAnd that's how Firefox stores it:
The differences are just about in every property. I'll probably stick to WebKit implementation.
The text was updated successfully, but these errors were encountered: