2.0.0 • Published 11 years ago
load-styles v2.0.0
load-styles
Add a CSS <style> tag to the document's <head> node.
Installation
$ npm install load-stylesAPI
loadStyles(String cssStr, Document doc) → <style>
Creates a <style> DOM node with the specified cssStr text injected into it.
Then, the <style> node is inserted into the <head> element of the doc
document instance. Finally, the DOM node is returned back to the user in case
any further action is required on the node.
Example
<div id="foo">This div should be red.</div>var loadStyles = require('load-styles');
loadStyles(
'#foo {' +
' width: 100px;' +
' height: 100px;' +
' background-color: red;' +
' text-align: center;' +
' font-size: 9px;' +
'}'
);License
MIT