minno-css
v1.0.0
Published
This is a super simple clone of some of the functionality of `jQuery.css`.
Downloads
8
Readme
minno-css
This is a super simple clone of some of the functionality of jQuery.css
.
It exposes a single function that applies style to a dom element.
const el = document.getElementById('header');
// the following are equivalent
css(el, {color:'red', fontFamily:'sans-serif'});
css(el, {color:'red', 'font-family':'sans-serif'});