I would like to know if it is possible to modify the "*" selector of css by means of javascript or jquery.
For example, I have the following:
* {
margin: 0px;
padding: 0px;
list-style: none;
text-decoration: none;
font-family: 'Roboto', sans-serif;
}
And I need to modify by means of javascript or jquery "font-family".
document.documentElementordocument.bodysince font-family is an inherited property.