I'm using the html2pdf plugin, but when trying to use CSS
:
table {line-height: 10px}
The same is not applied, I did not find anything in the plugin documentation, does anyone know how to fix it?
Example of what does 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>