0
Has anyone tried addRule or insertRule on this platform? I can't get it to work.
insertRule addRule
2 Answers
+ 1
window.onload=function() {
var sheet = document.getElementById("style-from-editor").sheet;
sheet.insertRule("* {background-color:red}");
}
+ 1
thank you!!!