Question….. Does the source code for PDF templates...
# advancedpdf
m
Question….. Does the source code for PDF templates really not understand “border-collapse:collapse” for tables? When I try to set up table borders, I get double overlaps between cells. I was able to recode them in a logical way so certain sides get borders, but really? It doesn’t seem to handle table borders very well. Can you conform this?
j
In my experience, it only seems to work when you add an !important tag to it.
Copy code
table{border-collapse: collapse !important;}
b
I noticed that the classes are not acknowledged in the email templates, also the justify-content property for a div with display:flex does not work.
m
I tried using border-collapse: collapse !important; but it doesn’t work. Still doubling up and making a thick border. However, it does seem possible to get the results if I simply use .5px solid black;. Half size border line will play nicely. Thanks!