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
div {
background-color: blue;
color: white;
transition:0.2s background-color, color ease-in-out;
}
In the second line, background-color is a CSS property being assigned a value. In the fourth line, background-color is part of the value of transition, yet both are assigned to the group cssBackgroundProp.
They're related, but different things, and as such it would be nice if they had different highlight groups assigned to them.
The text was updated successfully, but these errors were encountered:
Take the following CSS:
In the second line,
background-color
is a CSS property being assigned a value. In the fourth line,background-color
is part of the value oftransition
, yet both are assigned to the groupcssBackgroundProp
.They're related, but different things, and as such it would be nice if they had different highlight groups assigned to them.
The text was updated successfully, but these errors were encountered: