This package has been deprecated

Author message:

WARNING: This package has been renamed. Install @pirxpilot/css instead; see https://github.com/pirxpilot/css

code42day-css

0.3.1 • Public • Published

css

Simple CSS manipulation.

Installation

$ component install ianstormtaylor/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

Package Sidebar

Install

npm i code42day-css

Weekly Downloads

1

Version

0.3.1

License

MIT

Last publish

Collaborators

  • deprecated.packages