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
border-style: values solid | dashed | dotted, default value solid
border-left-style: values solid | dashed | dotted, default value solid
border-top-style: values solid | dashed | dotted, default value solid
border-right-style: values solid | dashed | dotted, default value solid
border-bottom-style: values solid | dashed | dotted, default value solid
But according to lib/validator.js, border-style is defined as genEnumValidator(['dotted', 'dashed', 'solid']), and the ENUM_VALIDATOR treats the first value as default value. Therefore, when border-style: dotted is used, the following notice will show up:
NOTE: property value `dotted` is the DEFAULT value for `border-style` (could be removed)
The text was updated successfully, but these errors were encountered:
In the document, default value for
border-style
:But according to lib/validator.js,
border-style
is defined asgenEnumValidator(['dotted', 'dashed', 'solid'])
, and the ENUM_VALIDATOR treats the first value as default value. Therefore, whenborder-style: dotted
is used, the following notice will show up:The text was updated successfully, but these errors were encountered: