insert a string of css into the <head>
. Maintenance fork.
var insertCss = require('insert-css');
var styleElement = insertCss('body { background:blue; }');
var insertCss = require('insert-css');
Insert some CSS into the page.
-
opts.container
- Which HTMLElement to use as the base mounting point, defaults todocument.querySelector('head')
. -
opts.prepend
- Add the CSS at the top level of the container instead of at the bottom level (default).
This is particullary useful for library creators where you may want your default CSS to be prepended so it can be easily overriden by user styles.
npm run example
npm test