Is there a way to dynamically load CSS properties in JavaScript?
I have two canvases and I've already linked a CSS file in the head tag.
I'm looking for a solution where when a specific option is selected, the CSS properties of the canvases change. The issue is that I'm applying a transform for tilting the element, which doesn't work with 'canvas.style.csstext'.
Any suggestions on how to achieve this?