1.0.1 • Published 8 years ago

patch.dom-style v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 years ago

dom-style

:warning: DEPRECATED :warning:

This module exists to fix some kik/Azer issues. New projects should not depend on this.


Inline CSS manipulation library

var style = require('dom-style')

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

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

style.show(document.body.children[0])
style.hide(document.body.children[1])