no border on HTML table when printing

前端 未结 6 1879
感情败类
感情败类 2020-12-14 19:21

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

6条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-14 19:54

    Adding table-layout: fixed; fixed this issue for me. I ended up with something like below:

    table {
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%;
    }
    
    th,
    td {
        border: 1px solid #ffffd;
        padding: 8px;
    }
    

提交回复
热议问题