load-css

0.1.0 • Public • Published

load-css

testling badge

Dynamically loads CSS into the document head.

var loadCSS = require('load-css');
var css = [
  'div {'
, ' color: green;'
, '}'
].join('\n')
 
loadCSS(css);

Installation

npm install load-css

API

loadCSS(css)

/**
 * Loads the given css string into the document head as an inlined script.
 * 
 * @name loadCSS
 * @function
 * @param css {String} the css to load
 */

Examples

You can run the examples via the following commands:

  • npm run demo-string demonstrates how to load a css string
  • npm run demo-filw demonstrates how to load a css file using the brfs browserify transform

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i load-css

Weekly Downloads

25

Version

0.1.0

License

MIT

Last publish

Collaborators

  • thlorenz