Hi all,
I am trying to format 4 separate html tables to be sent in an email and following the steps listed here. While the conditional formatting works, there are some strange gaps in the tables that I can't get rid of and the tables sometimes do not span the full width of the window. Any help on how to resolve this issue would be very much appreciated!
Hi @ol_poweruser ,
Thanks for the link, I've added the following snippet in and the format is now as desired.
<style>
table {
border-spacing: 0;
border-collapse: collapse;
}
td,th,tr {
padding: 0px;
}
</style>
Hi, without more information, I think you may need to adjust your style settings for your table.
From your screenshot, it appears that you need to apply collapse to you may need to apply "collapse" to additional elements. Also, you can use padding and spacing to adjust your table size if you would like it to be consistent.
Here is a link to a great reference HTML tables that I check out whenever I need a refresher:
https://www.w3schools.com/html/html_tables.asp
I hope this helps or at least gives you a start!
Michael E. Gernaey
497
Super User 2025 Season 2
David_MA
436
Super User 2025 Season 2
Riyaz_riz11
244
Super User 2025 Season 2