IE打印不正确

时间:2012-09-27 22:06:27

标签: css internet-explorer printing

有谁知道为什么IE(8,9测试) 拒绝打印此优惠券的右侧? (在红色背景上) 左侧(电话号码)打印好了。

其他浏览器(chrome,FF)打印整个doc ok。

http://www.weekend.co.il/templatesfiles/coupons/coupon.aspx?id=20483%20&resttype=19&coupontype=2

查看Bug,您只需打印到文件/或左键单击>>打印预览..

谢谢!

阿里克

2 个答案:

答案 0 :(得分:2)

默认情况下,IE未设置为打印背景图像。

Goto Print Preview
Click the gears icon.
Tick the box - Print Background Colors and Images.

enter image description here

这是我的打印尝试。

enter image description here

答案 1 :(得分:1)

发现它了! 需要指定背景图像如下:

 .background 
 {   
  display: list-item;   
  list-style-image: url(yourbackgroundimage.gif);   
  list-style-position: inside; 
 }

感谢DahlinDev https://stackoverflow.com/a/1218059/422827