Hello,
For my book I want to use different background image for every chapter. My initial plan was to use an attribute to qualify my chatper
I have no clue and I have done numerous test but without success.
Can you help me ?
For my book I want to use different background image for every chapter. My initial plan was to use an attribute to qualify my chatper
<div class="Chapitre" id="Chapitre2" part="player" titre="Classes et Archetype" chapitrenbr="1">
...
</div>
<div class="Chapitre" id="Chapitre2" part="player" titre="Classes et Archetype" chapitrenbr="2">
...
</div>
@page Chapitre {
size: A4;
background: url(images/gauche_ch1.svg); <-- If chapter 1
background: url(images/gauche_ch2.svg); <-- If chapter 2
background-repeat: no-repeat;
}
I have no clue and I have done numerous test but without success.
Can you help me ?