1

Hi,

The latest version of HTML2PDF does not seem to support multiple class in stylesheet. For example

the combination of 2 class would take priority over 1 single class.

In the stylesheet document

.layout{
background: #fff;
}

.layout.blue{
background: #f3fe3e;
}

However, the background code does not change to blue at all.

<div class="layout blue">
<p> paragraph </p>
</div>


Is there anything you could help and pointer of where to look and fix.

Many thanks,
Hung



In the <page> tag

2

sorry, it does not support this feature

but you can use this :

.layout{
background: #fff;
}

.blue{
background: #f3fe3e;
}


<div class="layout blue">
<p> paragraph </p>
</div> 
Ancien pseudo : lolo

3

Ah, that would be fine wouldn't it. Many thanks for a quick response Spipu. Much appreciated.