Anonymous View
Skip to content

bytebodger/javascript-css3-lookup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

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:

export const Foo = () => {
   return <>
      <div style={{
         cursor: css3.cursor.crosshair,
         // every time you type one of the periods on the line above,
         // your IDE should show you all of the options that are 
         // available - first in the css3 object, and then in the 
         // css3.cursor object
      }}>
         Here is the div
      </div>
   </>
}

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors