An open API service indexing awesome lists of open source software.

https://github.com/bytebodger/javascript-css3-lookup

A utility class for JS that shows all of the available properties/values in CSS3
https://github.com/bytebodger/javascript-css3-lookup

Last synced: 8 months ago
JSON representation

A utility class for JS that shows all of the available properties/values in CSS3

Awesome Lists containing this project

README

          

# css3

`css3` is a lookup utility for CSS3 properties to be used when writing inline styles in JavaScript. It's a simple object that contains most of the commonly-used options for most of the CSS3 properties.

## Usage

After installation, import the utility as follows:

```javascript
import { css3 } from '@toolz/css3';
```

The `css3` variable will now be available within your code, and the structure of the object should provide for easier code completions in your IDE.

**Examples:**

```javascript
export const Foo = () => {
return <>


Here is the div

>
}
```