| 1 | # PostCSS Attribute Case Insensitive [<img src="https://postcss.github.io/postcss/logo.svg" alt="PostCSS Logo" width="90" height="90" align="right">][postcss]
|
|---|
| 2 |
|
|---|
| 3 | [<img alt="npm version" src="https://img.shields.io/npm/v/postcss-attribute-case-insensitive.svg" height="20">][npm-url] [<img alt="CSS Standard Status" src="https://cssdb.org/images/badges/case-insensitive-attributes.svg" height="20">][css-url] [<img alt="Build Status" src="https://github.com/csstools/postcss-plugins/workflows/test/badge.svg" height="20">][cli-url] [<img alt="Discord" src="https://shields.io/badge/Discord-5865F2?logo=discord&logoColor=white">][discord]
|
|---|
| 4 |
|
|---|
| 5 | [PostCSS Attribute Case Insensitive] enables support for [Case Insensitive Attribute] matching in selectors.
|
|---|
| 6 |
|
|---|
| 7 | ```pcss
|
|---|
| 8 | [frame=hsides i] {
|
|---|
| 9 | border-style: solid none;
|
|---|
| 10 | }
|
|---|
| 11 |
|
|---|
| 12 | /* becomes */
|
|---|
| 13 |
|
|---|
| 14 | [frame=hsides],[frame=Hsides],[frame=hSides],[frame=HSides],[frame=hsIdes],[frame=HsIdes],[frame=hSIdes],[frame=HSIdes],[frame=hsiDes],[frame=HsiDes],[frame=hSiDes],[frame=HSiDes],[frame=hsIDes],[frame=HsIDes],[frame=hSIDes],[frame=HSIDes],[frame=hsidEs],[frame=HsidEs],[frame=hSidEs],[frame=HSidEs],[frame=hsIdEs],[frame=HsIdEs],[frame=hSIdEs],[frame=HSIdEs],[frame=hsiDEs],[frame=HsiDEs],[frame=hSiDEs],[frame=HSiDEs],[frame=hsIDEs],[frame=HsIDEs],[frame=hSIDEs],[frame=HSIDEs],[frame=hsideS],[frame=HsideS],[frame=hSideS],[frame=HSideS],[frame=hsIdeS],[frame=HsIdeS],[frame=hSIdeS],[frame=HSIdeS],[frame=hsiDeS],[frame=HsiDeS],[frame=hSiDeS],[frame=HSiDeS],[frame=hsIDeS],[frame=HsIDeS],[frame=hSIDeS],[frame=HSIDeS],[frame=hsidES],[frame=HsidES],[frame=hSidES],[frame=HSidES],[frame=hsIdES],[frame=HsIdES],[frame=hSIdES],[frame=HSIdES],[frame=hsiDES],[frame=HsiDES],[frame=hSiDES],[frame=HSiDES],[frame=hsIDES],[frame=HsIDES],[frame=hSIDES],[frame=HSIDES] {
|
|---|
| 15 | border-style: solid none;
|
|---|
| 16 | }
|
|---|
| 17 | ```
|
|---|
| 18 |
|
|---|
| 19 | ## Usage
|
|---|
| 20 |
|
|---|
| 21 | Add [PostCSS Attribute Case Insensitive] to your project:
|
|---|
| 22 |
|
|---|
| 23 | ```bash
|
|---|
| 24 | npm install postcss postcss-attribute-case-insensitive --save-dev
|
|---|
| 25 | ```
|
|---|
| 26 |
|
|---|
| 27 | Use it as a [PostCSS] plugin:
|
|---|
| 28 |
|
|---|
| 29 | ```js
|
|---|
| 30 | const postcss = require('postcss');
|
|---|
| 31 | const postcssAttributeCaseInsensitive = require('postcss-attribute-case-insensitive');
|
|---|
| 32 |
|
|---|
| 33 | postcss([
|
|---|
| 34 | postcssAttributeCaseInsensitive(/* pluginOptions */)
|
|---|
| 35 | ]).process(YOUR_CSS /*, processOptions */);
|
|---|
| 36 | ```
|
|---|
| 37 |
|
|---|
| 38 | [PostCSS Attribute Case Insensitive] runs in all Node environments, with special
|
|---|
| 39 | instructions for:
|
|---|
| 40 |
|
|---|
| 41 | | [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |
|
|---|
| 42 | | --- | --- | --- | --- | --- | --- |
|
|---|
| 43 |
|
|---|
| 44 | [cli-url]: https://github.com/csstools/postcss-plugins/actions/workflows/test.yml?query=workflow/test
|
|---|
| 45 | [css-url]: https://cssdb.org/#case-insensitive-attributes
|
|---|
| 46 | [discord]: https://discord.gg/bUadyRwkJS
|
|---|
| 47 | [npm-url]: https://www.npmjs.com/package/postcss-attribute-case-insensitive
|
|---|
| 48 |
|
|---|
| 49 | [Gulp PostCSS]: https://github.com/postcss/gulp-postcss
|
|---|
| 50 | [Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss
|
|---|
| 51 | [PostCSS]: https://github.com/postcss/postcss
|
|---|
| 52 | [PostCSS Loader]: https://github.com/postcss/postcss-loader
|
|---|
| 53 | [PostCSS Attribute Case Insensitive]: https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-attribute-case-insensitive
|
|---|
| 54 | [Case Insensitive Attribute]: https://www.w3.org/TR/selectors4/#attribute-case
|
|---|