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
- Host: GitHub
- URL: https://github.com/bytebodger/javascript-css3-lookup
- Owner: bytebodger
- License: mit
- Created: 2020-02-28T03:07:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-29T18:46:01.000Z (over 3 years ago)
- Last Synced: 2025-06-10T13:47:21.356Z (about 1 year ago)
- Language: JavaScript
- Size: 1.08 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
>
}
```