页面有1px的黑色边框,为什么打印预览的时候就没有边框或者有些地方显示不出来
HTML 代码
- HTML code
<table cellpadding="0" cellspacing="1" bgcolor="#000"> <col width="72" /> <col width="660" /> <tr height="68"> <td width="732" height="68" colspan="2" bgcolor="#FFFFFF">工作报告</td> </tr> <tr height="42"> <td height="42" bgcolor="#FFFFFF">时间</td> <td bgcolor="#FFFFFF">??????????? 2009-12-14至2009-12-20?? 第??? 周/月</td> </tr> <tr height="31"> <td height="31" bgcolor="#FFFFFF">职务</td> <td bgcolor="#FFFFFF">??????????? 销售跟单:周飞蝶</td> </tr> <tr height="219"> <td height="219" bgcolor="#FFFFFF">本周工作重点</td> <td bgcolor="#FFFFFF"> </td> </tr> <tr height="198"> <td height="198" bgcolor="#FFFFFF">待解问题</td> <td bgcolor="#FFFFFF"> </td> </tr> <tr height="141"> <td height="141" bgcolor="#FFFFFF">下周工作计划</td> <td bgcolor="#FFFFFF"> </td> </tr> <tr height="124"> <td height="124" bgcolor="#FFFFFF">部门主管意见</td> <td bgcolor="#FFFFFF"> </td> </tr> </table>
------解决方案--------------------
你是怎么打印预览的?
------解决方案--------------------
try
- HTML code
<table cellspacing=0 cellpadding=5 border=1 style="border-collapse: collapse" bordercolor="#000000"> <col width="72" /> <col width="660" /> <tr height="68"> <td width="732" height="68" colspan="2" bgcolor="#FFFFFF">工作报告</td> </tr> <tr height="42"> <td height="42" bgcolor="#FFFFFF">时间</td> <td bgcolor="#FFFFFF">??????????? 2009-12-14至2009-12-20?? 第??? 周/月</td> </tr> <tr height="31"> <td height="31" bgcolor="#FFFFFF">职务</td> <td bgcolor="#FFFFFF">??????????? 销售跟单:周飞蝶</td> </tr> <tr height="219"> <td height="219" bgcolor="#FFFFFF">本周工作重点</td> <td bgcolor="#FFFFFF"> </td> </tr> <tr height="198"> <td height="198" bgcolor="#FFFFFF">待解问题</td> <td bgcolor="#FFFFFF"> </td> </tr> <tr height="141"> <td height="141" bgcolor="#FFFFFF">下周工作计划</td> <td bgcolor="#FFFFFF"> </td> </tr> <tr height="124"> <td height="124" bgcolor="#FFFFFF">部门主管意见</td> <td bgcolor="#FFFFFF"> </td> </tr> </table>