DataTable打印没有表格边框

时间:2014-01-09 14:30:49

标签: php jquery html printing datatable

DataTable但是当我使用print(Ctrl + P)时不能有表的边框。

www.trirand.com/blog/phpjqgrid/examples/sorting/custom/default.php

请帮我拿表格的边框

我非常感谢你。

1 个答案:

答案 0 :(得分:0)

请为打印媒体定义CSS。请试一试。

@media print {
    table, table tr, table td {
        border-top: #000 solid 1px;
        border-bottom: #000 solid 1px;
        border-left: #000 solid 1px;
        border-right: #000 solid 1px;
    }
}