patch.dom-style
v1.0.1
Published
## :warning: DEPRECATED :warning:
Downloads
2
Readme
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])