Socket
Socket
Sign inDemoInstall

@hint/hint-css-prefix-order

Package Overview
Dependencies
6
Maintainers
5
Versions
46
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @hint/hint-css-prefix-order

Ensure vendor-prefixed versions of a CSS property are listed before the unprefixed version.


Version published
Weekly downloads
16K
increased by16.06%
Maintainers
5
Created
Weekly downloads
 

Readme

Source

Prefixed CSS first (css-prefix-order)

Ensure vendor-prefixed versions of a CSS property are listed before the standardized, unprefixed version.

Why is this important?

When multiple versions of the same CSS property are specified, the last supported one will be used due to how browsers handle fallback values. This means the order matters when using both vendor-prefixed and unprefixed versions of the same property. Specifically, the unprefixed version must be listed last to ensure standardized behavior takes precedence.

What does the hint check?

This hint examines CSS files looking for blocks containing both prefixed and unprefixed CSS properties or values. The hint then verifies the last listed version of a particular property in a block is unprefixed.

Examples that trigger the hint

appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
display: grid;
display: -ms-grid;

Examples that pass the hint

-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
display: -ms-grid;
display: grid;

How to use this hint?

This package is installed automatically by webhint:

npm install hint --save-dev

To use it, activate it via the .hintrc configuration file:

{
    "connector": {...},
    "formatters": [...],
    "parsers": [...],
    "hints": {
        "css-prefix-order": "error"
    },
    ...
}

Note: The recommended way of running webhint is as a devDependency of your project.

Keywords

FAQs

Last updated on 27 Jun 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc