🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

postcss-nesting

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
p

postcss-nesting

Nest rules inside each other in CSS

13.0.1
latest
100

Supply Chain Security

100

Vulnerability

100

Quality

83

Maintenance

100

License

Version published
Weekly downloads
5.7M
-15.67%
Maintainers
3
Weekly downloads
 
Created
Issues
11

What is postcss-nesting?

The postcss-nesting package is a PostCSS plugin that allows you to use nesting syntax in CSS, similar to what is offered by preprocessors like Sass and Less. It helps to write more readable and maintainable CSS by allowing styles to be nested within one another.

What are postcss-nesting's main functionalities?

Nesting Rules

Allows nesting of selectors within a parent selector, which will be expanded to the equivalent of 'a b { color: black; }'.

a {
  & b { color: black; }
}

Nesting Properties

Enables nesting of properties, which is useful for grouping font properties or other related properties together.

a {
  font: {
    weight: bold;
    size: 1em;
    family: serif;
  }
}

Nesting At-Rules

Supports nesting of at-rules like @media within a selector, which will be processed into the correct CSS syntax.

a {
  @media (min-width: 500px) {
    color: black;
  }
}

Other packages similar to postcss-nesting

FAQs

Package last updated on 23 Oct 2024

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