Hi,
I’m trying to insert a simple HTML table as a test for a merge I will be trying to do.
DocumentBuilder builder = new DocumentBuilder(docMerge);
builder.InsertHtml(@"
table {
border: 1px solid black;
width: 100%;
border: 1;
}
thead {
background-color: #AEAAAA;
}
Some Header | Some other Header | Another header | Yet another |
My data | My data | My data | My data |
But the output, though it does make a table, the CSS is not applied. I have tried using inline CSS too but I could only get a border to show, everything in the ‘style’ tag was ignored.
Any ideas as to why?