用css实现打印背景图片功能

By Minidxer | November 2, 2007

要想在打印网页时一并将背景图打印出来,首先需要设置:ie>>internet选项>>打印背景颜色和图像 Firefox->文件->页面设置->Option->打印背景颜色和图像 打勾,然后在CSS或html的<style> </style>中添加:


@media print{
body {
font-family: -serif;
font-size : 12pt;
background-color: white;
background: url(/image/background.jpg);
}
div.confidential {
text-align: center;
color:red;
font-size: 20pt;
font-weight:bold;

border: solid red;
}
}
@media screen{
div.confidential {
display:none;
}
}

Topics: Web/CGI相关 | No Comments » | 628 views Tags: , , , ,

Search Posts