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

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

There is a newer version: 10.17.0.28100
Show newest version

The W3C specifications define the valid media features. Only the official and browser-specific media features should be used to get the expected impact in the final rendering.

Noncompliant Code Example

@media screen and (unknown: 1000px) { .. }

Compliant Solution

@media screen and (width: 1000px) { .. }

See





© 2015 - 2024 Weber Informatics LLC | Privacy Policy