Hi everyone
Im very rusty on my html
This looks good in Powerapps but when I send an email the PDF renders with either with colspan not working or the non colspan cells on the right being pushed out.
"<body>
<h1>colspan problem</h1>
<table style='width: 100%; border-collapse: collapse; border-style: none;' border='1'>
<tr>
<th style='width: 33.3333%;text-align:left'> Cell1</th>
<th style='width: 33.3333%;text-align:left'> Cell2</th>
<th style='text-align:left'> Cell3</th>
</tr>
<tr>
<td style='width: 33.3333%;text-align:left'> Cell4</td>
<td style='width: 33.3333%;text-align:left'> Cell5</td>
<td style='text-align:left'> Cell6</td>
</tr>
<tr>
<th style='text-align:left'>Cell7</th>
<th style='text-align:left;'colspan='2'>Cell8</th>
</tr>
<tr>
<td style='text-align:left'>Cell9</td>
<td style='text-align:left'colspan='2'>Cell10</td>
</tr>
</table></body>"