0
I’m using the plugin html2pdf, but when trying to use formatting CSS
:
table { line-height: 10px }
The same is not applied, I found nothing in the plugin documentation, someone knows how to fix it?
Example of what makes the CSS
"table { line-height: 10px }
"
table { line-height: 10px }
<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
Yes, I thought about the third option, but the way the programming was made seems to me not accept javascript, only php, then I will have to do a hell of a Gambi, I will try to do with javascript, if I can’t, I will have to appeal to the second option even :|
– Marcos Henzel