On one of my pages, I have imported CSS using the following code:
<style type="text/css">
@import url('css/common.css');
</style>
While working with a PDF generation function, I used alert debugging to examine the styles being applied:
alert('style: ' +document.getElementsByTagName('style')[0].innerHTML);
The alert displayed the following classes:
style:
.xn0 { color:#010101;font-family:Lucida Grande, Arial, sans-serif;font-size:14px;}
.xn1 { color:#010101;font-family:Lucida Grande, Arial, sans-serif;font-size:14px;}
.xn2 { color:#999999;font-family:Lucida Grande, Arial, sans-serif;font-size:14px;}
.xnb { color:#010101;font-family:Lucida Grande, Arial, sans-serif;font-size:14px;font-weight:bold;}
.if2 { color:#010101;font-family:Lucida Grande, Arial, sans-serif;font-size:14px;border:0px;border-bottom:1px dotted #CFCFCF;width:100%;}
I am unsure where these classes are coming from and how they are being added to my page. Any help would be greatly appreciated.