Possible Duplicate:
How to get a background image to print using css?
i have a div that has a picture background
<html>
<head>
</head>
<body>
<div style='background:url(name.png);width:100px; height:100px;'></div>
<input type='button' onclick='window.print()'>//button that print
</body>
</html>
it works fine when i view it in browsers..but the moment that i print the page with div it doesnt print the background picture... but does print the text and image declared in
how could i fixed this ???