HTML-Renderer
HTML-Renderer copied to clipboard
Table row styles are being striped when using HtmlRender.RenderToImage
Hello,
I have noticed a funny issue with a simple html when using HtmlRender.RenderToImage
<table>
<tr style="background-color:#4b266c;"><!-- I have tried the following too.<tr bgcolor="#4b266c"> -->
<td>
<div >Hello World!</div>
</td>
</tr>
</table>
The styles on for the TR are not being respected and the background is white.
KC