Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mboussaid/JSS

A simple javascript library that allows you to change the style of elements
https://github.com/mboussaid/JSS

css javascript jquery js library

Last synced: 3 months ago
JSON representation

A simple javascript library that allows you to change the style of elements

Awesome Lists containing this project

README

        

# JSS (JAVASCRIPT STYLE SHEET)

A simple javascript library that allows you to change the style of elements

### How to use

> Syntax

```javascript

///[Alert!] please use the camelcase for property value
/// it means that you need to use backgroundColor instead of background-color
/// [examples]
//// borderRadius instead of border-radius
//// paddingBottom instead of padding-bottom

jss('element',
{
property1 : 'value1',
property2 : 'value2',
....

})