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
CSS allows duplicate property names but only the last instance of a duplicated name determines the actual value that will be used for it. Therefore, changing values of other occurrences of a duplicated name will have no effect and may cause misunderstandings and bugs.
Operating system and version: All/Unrelated
Browser and version: All/Unrelated
Suggested Fix: Remove the duplicate that doesn't align with the vision of the product
The text was updated successfully, but these errors were encountered:
It was done on purpose, since text-decoration as a shorthand had very poor support back in the days: the first declaration was a fallback value for non-supporting browsers (which is a very common pattern for progressively enhance some properties allowing modern values).
However after checking support on MDN, it appears that our current targets all support the shorthand value. I think it's now safe to drop the first one in v5 then.
Feel free to suggest a patch, or we'll take of it when possible.
The generated reboot css file contains a duplicate property:
bootstrap/scss/_reboot.scss
Lines 145 to 146 in 056216a
CSS allows duplicate property names but only the last instance of a duplicated name determines the actual value that will be used for it. Therefore, changing values of other occurrences of a duplicated name will have no effect and may cause misunderstandings and bugs.
The text was updated successfully, but these errors were encountered: