All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.css.rules.css.S4656.html Maven / Gradle / Ivy

There is a newer version: 10.17.0.28100
Show newest version

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.

This rule ignores $sass, @less, and var(--custom-property) variable syntaxes.

Noncompliant Code Example

a {
  color: pink;
  background: orange;
  color: orange
}

Compliant Solution

a {
  color: pink;
  background: orange
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy