Within my default style sheet, I have defined the default font in the following manner:
body, div, span, ...
{
font:normal normal normal 13px Arial, helvetica, Sans-Serif;
}
While this setting works well overall, it becomes problematic when a third-party control is added to the page as it inherits the same font, causing display issues.
If I enclose the third-party control within a div, how can I eliminate or reset the globally defined font so that anything inside the div will appear as if no font was previously specified?