Hello,
Alors en un mot: HELP!
J'essaie d'ajouter une image à l'impression de mes pages. J'ai d'abord fait:
<html>
<head>
<style type="text/css">
body{
background: white url("hello.gif");
background-repeat: repeat-x;
background-position: center;
}
</style>
</head>
<body>
Hello
</body>
</html>
Ce qui me met une joli image centree et repetee sur l'axe des x
Puis j'ai teste @media print:
<html><title>Add Logo</title>
<head>
<style type="text/css">
@media print{
body{
background: white url("hello.gif");
background-repeat: repeat-x;
background-position: center;
}
</style>
</head>
<body>
Hello
</body>
</html>
Et la, plus rien

, pas d'image quand j'imprime. J'ai alors ajoute:
.h{
font-family:verdana;
font-style: bold;
font-size: 18pt;
color: red;
}
...
<span class="h">Hello</span>
et j'ai pu constater que le texte subit bien l'influence de .h; alors pourquoi pas d'images???
J'ai teste ca sous IE (pouah!)...
++Malik7934
PS: Toute la discussion sur: http://www.phpcs.com/forum.v2.aspx?ID=491684