I'm trying to write one line of CSS using vanilla JavaScript inside the document.body
, but right before the closing </body>
tag.
What am I doing wrong, why isn't this working?
document.body.write('<style type="text/css">#input, #backgroundFix{ background:url(dawn.svg) top left repeat-x; }</style>');