鍍金池/ 問答/HTML/ JSP中的表格打印換頁后部分邊框消失,加什么屬性可以解決?

JSP中的表格打印換頁后部分邊框消失,加什么屬性可以解決?

使用IE的打印功能,轉(zhuǎn)成pdf會(huì)出現(xiàn)該問題,預(yù)覽時(shí)表格都是有的:
預(yù)覽:
clipboard.png
打?。?br>clipboard.png
樣式:
<style>

body{font-family: "FangSong";font-size: 15px; text-align: center;}
.content{width:640px;margin:0 auto 70px;}
.table1{width: 100%;table-layout:fixed;word-break:normal;}
.table1 tr{page-break-inside: avoid !important;}
.table1 tr td{height: 30px;border:2px solid #000;}
.webPrint {page-break-after:always;} 

</style>
表格部分代碼:
clipboard.png

回答
編輯回答
嫑吢丕

去掉height屬性即可解決。

2017年2月10日 01:51