1.0.0 • Published 5 years ago

@pirxpilot/css v1.0.0

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

css

Simple CSS manipulation.

Installation

$ npm install @pirxpilot/css

Example

var css = require('css');
var div = document.getElementById('header');

// get
css(div, 'position'); // "relative"

// set one at a time
css(div, 'position', 'fixed');

// set many at a time
css(div, {
  position: 'fixed',
  top: '24px'
});

// use dashes if you want
css(div, 'font-size', '16px');

// you can omit "px" and it will be added automatically
css(div, 'font-size', 16);

API

css(el, property)

Get the current value of a CSS property of an el.

css(el, property, value)

Set the value of a CSS property on an el.

css(el, properties)

Set the value of a dictionary of properties on an el.

License

MIT