Socket
Socket
Sign inDemoInstall

specificity

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

specificity

Calculate the specificity of a CSS selector


Version published
Weekly downloads
1.9M
increased by5.61%
Maintainers
1
Weekly downloads
 
Created

What is specificity?

The 'specificity' npm package is used to calculate the specificity of CSS selectors. Specificity is a measure of how specific a CSS selector is, which determines which styles are applied when multiple selectors match the same element.

What are specificity's main functionalities?

Calculate Specificity

This feature allows you to calculate the specificity of a given CSS selector. The result will be an array of objects, each containing the selector and its specificity score.

const specificity = require('specificity');
const result = specificity.calculate('body div #content .article');
console.log(result);

Compare Specificity

This feature allows you to compare the specificity of two CSS selectors. The comparison result will indicate which selector is more specific.

const specificity = require('specificity');
const result1 = specificity.calculate('body div #content .article');
const result2 = specificity.calculate('body div .article');
const comparison = specificity.compare(result1[0].specificityArray, result2[0].specificityArray);
console.log(comparison);

Other packages similar to specificity

Keywords

FAQs

Package last updated on 06 Jan 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc