-
Updated
Mar 17, 2023 - JavaScript
PostCSS
PostCSS is a tool for transforming CSS with JavaScript. It can be used to develop a template language such as Sass and LESS. The PostCSS core consists of:
- CSS parser that generates an abstract syntax tree
- Set of classes that comprises the tree
- CSS generator that generates a CSS line for the object tree
- Code map generator for the CSS changes made#
There are official tools making it possible to use PostCSS with build systems such as Webpack, Gulp, and Grunt. There is also a console interface available. Browserify or Webpack can be used to open PostCSS in a browser.
The complete plugin list can be found on postcss.parts, with some examples listed below.
- Autoprefixer to add and clear browser prefixes.
- CSS Modules to get CSS selectors isolated and code organized. It is supplied as part of Webpack.
- stylelint to analyze CSS code for mistakes and check style consistency.
- stylefmt fixes the CSS code according to the stylelint settings.
- PreCSS to perform some Sass/Less preprocessing functions.
- postcss-preset-env to emulate features from unfinished CSS specification drafts.
- cssnano to make CSS smaller in size by getting rid of the spaces and rewriting the code.
- RTLCSS to change CSS code so that the design should be suitable for right-to-left writing (such is applied in Arabic and Hebrew).
- postcss-assets, postcss-inline-svg and postcss-sprites to work with graphics.
Here are 3,297 public repositories matching this topic...
PostCSS plugin enabling variable mapping for each
-
Updated
Nov 28, 2017 - JavaScript
This is a cheat sheet repo for PostCSS
-
Updated
Mar 12, 2023 - CSS
This Practice File includes all about post css. You will get a list of postcss plugins which I used in this practice file or learn from documentation.
-
Updated
Jul 31, 2023 - CSS
A starter project boilerplate for using SCSS and Webpack
-
Updated
Mar 22, 2023 - JavaScript
-
Updated
Jul 29, 2023 - HTML
postcss-fontify is a lightweight PostCSS plugin that generates font-related CSS properties and declarations, saving you time and effort in your stylesheet development.
-
Updated
Apr 8, 2023 - JavaScript
Maquetación de una tarjeta usando Tailwind.css. Aplicandole "responsive design" y selector de tema oscuro.
-
Updated
Jun 6, 2023 - HTML
-
Updated
Dec 23, 2022 - Vue
-
Updated
Aug 2, 2023 - HTML
Boilerplate npm scripts for postprocessing Vanilla JavaScript and standard CSS with Babel and Postcss, including obfuscation and minification.
-
Updated
Jan 7, 2023 - JavaScript
Basic setup for projects using sass, gulp and jekyll
-
Updated
Aug 14, 2016 - JavaScript