1.0.3 • Published 8 years ago

dom-element-css v1.0.3

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

dom-element-css

Build Status

DOM element style manipulation function.

API

css(element, name, value)

Gets/sets a style.

css(element, "color", "black"); // Setter
css(element, "color"); // Getter

css(element, object)

Sets a style using an object as value.

css(element, {
  color: "black",
  background: "white"
});

Acknowledgement

The component team which provides a lot of solid working bases to plagiarize :-p.