I\'m working on website that is supposed to print table.
One problem I\'m running into is that some table borders won\'t be printed, although they are correctly disp
Adding table-layout: fixed; fixed this issue for me. I ended up with something like below:
table-layout: fixed;
table { border-collapse: collapse; table-layout: fixed; width: 100%; } th, td { border: 1px solid #ffffd; padding: 8px; }