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

https://github.com/npm-dom/dom-style

Library to manipulate CSS properties
https://github.com/npm-dom/dom-style

Last synced: about 1 month ago
JSON representation

Library to manipulate CSS properties

Awesome Lists containing this project

README

          

## dom-style

Inline CSS manipulation library

```js
var style = require('dom-style')

style(document.body, 'background-color', 'red')

style(document.body, {
'font-color': 'yellow',
'border': '5px solid black'
})

```

## Install

```bash
$ npm install dom-style
```