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

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

There is a newer version: 10.17.0.28100
Show newest version

Why is this an issue?

The W3C specifications define the units that can be used with lengths. A unit that is not part of the list of supported ones is likely to be a typo and will be seen as a UI bug by the user.

This rule raises an issue each time a unit is not officially supported.

Noncompliant code example

a {
  width: 10pixels; /* Noncompliant; "pixels" is not a valid unit */
}

Compliant solution

a {
  width: 10px;
}

Resources





© 2015 - 2024 Weber Informatics LLC | Privacy Policy