Skip to content

Instantly share code, notes, and snippets.

View kaisermann's full-sized avatar
👋

Christian Kaisermann kaisermann

👋
View GitHub Profile
function writeCSS(css) {
var head = document.head || document.getElementsByTagName('head')[0],
style = document.createElement('style');
style.type = 'text/css';
if(style.styleSheet) {
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}