我正在構建一個可列印的表格。它在 chrome 上運行良好。但是在 firefox 上,它不顯示表格邊框。
<body>
<table>
<tbody>
<tr>
<td>One</td><td>One</td><td>One</td>
</tr>
<tr>
<td>One</td><td>One</td><td>One</td>
</tr>
<tr>
<td>One</td><td>One</td><td>One</td>
</tr>
</tbody>
</table>
<style>
table,tr,td{
border: 1px solid;
border-collapse: collapse;
}
</style>
</body>
uj5u.com熱心網友回復:
通常當邊框太薄時,它們似乎在預覽中不可見1px。但是邊框在列印時實際上是可見的。
這可能是 Firefox 預覽中的影像重采樣問題。因為它們在 chrome 上顯示良好。
轉載請註明出處,本文鏈接:https://www.uj5u.com/qukuanlian/314693.html
