The way border shorthand is being converted, it's always expecting a perfect value, in order, and nothing missing: width style color. But sometimes border doesn't come with width, or style, or color - and it's still valid CSS. Or it could be on a completely different order, like color width style.
Current Behavior
is converting to:
The way
border
shorthand is being converted, it's always expecting a perfect value, in order, and nothing missing:width style color
. But sometimesborder
doesn't come with width, or style, or color - and it's still valid CSS. Or it could be on a completely different order, likecolor width style
.Expected Behavior
(This issue is now fixed. I'm just creating it so that I can reference it in the Pull Request).