figcaption { font-size: 13px; font-style: italic; }The following rule defined in the custom CSS file will ensure that image captions will be defined in bold rather than italic:
figcaption { font-style: bold; }Note that the specific StyleSheet rules will not have any effect on the PDF generation.
table
if it has no custom stylestable
if it has no custom stylesul
or ol
if it has no custom stylesul
or ol
if it has no custom stylesul
or ol
if it has no custom styles<table class="myTable"> <tableHeader> <column>first column</column> <column>second column</column> </tableHeader> <row> <cell>name</cell> <cell>value</cell> </row> <row> <cell>name2</cell> <cell>value2</cell> </row> </table>For example in the following list all the child lists and list items will have the "myList" custom style:
<ul class="myList"> <li>First item</li> <li>Second item</li> <ul> <li>Third item</li> <li>Fourth item</li> </ul> </ul>
<title title="the title" class="red" />If you use a Custom StyleSheet with the following rule, this title will appear in red:
h2.red { color: red; }
iframe.header { height: 100px; }
caption { font-weight: italic; }
h2 { color: red; }
div.middleWithImage, div.middleForIDXWithImage { background-position: top !important; background-repeat: repeat!important; background-size: contain !important; }
docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.