If I have the following tag style
:
<style>
body{
color:red;
}
</style>
Would it be possible to add a new css rule as within that style
through Javascript
?
For example, I want to add this to the end of the first style
I gave as an example:
.class-x {
color:yellow;
}