Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing CSS image problem

Status
Not open for further replies.

langer05

Technical User
Jan 3, 2005
1
FR
Hi

When printing from Netscape 7.1, images which are referenced from CSS are printing out too small.

I have enclosed an html page containing 2 images. The images are the same, but one image is referenced by a css class, the other image in embedded directly into the page.

When this page is printed the image which is embedded in the html prints out at full size, whereas the other prints about 90% too small.

This is not a problem in IE or Opera.

You can download the image from:
Is there a reason why this is and how can i resolve it so that all images print at the correct size ?

Regards

----------------------------------
<html>
<head>
<title>Untitled Document</title>
<style>
.turntable {
background: url(turntable.jpg) left top no-repeat;
padding-right: 275px;
height:185px;
}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0">
<tr>
<td class="turntable">&nbsp;</td>
</tr>
</table>
<p><img src="turntable.jpg" width="275" height="185"></p>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top