List of standard and browser specific CSS functions.
npm install css-functions-list[![Build Status][ci-img]][ci]
List of standard and
browser specific>)
CSS functions.
Data sources are:
- MDN reference on
CSS functions
- MDN reference on
general CSS features.
- MDN
browser compatibility data for CSS functions
- Manually maintained experimental, legacy and removed functions
``sh`
npm install css-functions-list --save
`js
import { promises as fs } from 'fs';
import functionsListPath from 'css-functions-list';
(async () => {
const functionsList = JSON.parse(
await fs.readFile(functionsListPath, 'utf8')
);
console.log(functionsList);
/* [
'abs',
'acos',
'annotation',
'asin',
'atan',
'atan2',
'attr',
'blur',
'brightness',
'calc'
// …
]; */
})();
`
Type: string`
Path to CSS functions list JSON file.
MIT © Ivan Nikolić
[ci]: https://github.com/niksy/css-functions-list/actions?query=workflow%3ACI
[ci-img]: https://github.com/niksy/css-functions-list/workflows/CI/badge.svg?branch=master