Hello, in CSS file, I have the following:
#toc a[class="H1"] {
font-size:28px;
color: blue;
}
In html, I have a li item as:
<a id="link0" href="#title0" class="H1">ngws_xpatrol_ctrl</a>
This is in a div with id="toc".
The font size and color in CSS works well in a browser, but when I convert the html file to a pdf, #toc a[class="H1"] is not applied. Is there anyway I can make this work?
Thanks
Diana
#toc a[class="H1"] {
font-size:28px;
color: blue;
}
In html, I have a li item as:
<a id="link0" href="#title0" class="H1">ngws_xpatrol_ctrl</a>
This is in a div with id="toc".
The font size and color in CSS works well in a browser, but when I convert the html file to a pdf, #toc a[class="H1"] is not applied. Is there anyway I can make this work?
Thanks
Diana