StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
473 B
19 lines
473 B
4 years ago
|
# css-global-keywords
|
||
|
|
||
|
List of global, CSS-wide keywords:
|
||
|
- [`initial`](https://developer.mozilla.org/en-US/docs/Web/CSS/initial)
|
||
|
- [`inherit`](https://developer.mozilla.org/en-US/docs/Web/CSS/inherit)
|
||
|
- [`unset`](https://developer.mozilla.org/en-US/docs/Web/CSS/unset)
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
```
|
||
|
npm install css-global-keywords [--save[-dev]]
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```js
|
||
|
var cssGlobalKeywords = require('css-global-keywords');
|
||
|
cssGlobalKeywords; // ['initial', 'inherit', 'unset']
|
||
|
```
|