I am writing an application using JavaScript and some CSS files.
For some reason when some css values are set the html tag has no effect e.g.
color: red;
and <font color="blue">
.
My app can be bundled with any other project, so I can't change some CSS values ...
A small reproducible code;
<style>
/* I cannot change these values... */
*
{
color: blue;
font-size: 10px;
}
/* I can change these values */
*
{
color: unset;
font-size: unset;
}
</style>
<font color="red" size="20px">
Lorem ipsum
</font>
In this case text should be red and font size should be set to 20px.
I cannot opt out of this html tag because it is added by the browser - these tags are added to editable div...
Any idea?