Hi, IE7 provides a function to scale a given HTML page. Yet, it misses to scale images given through CSS using the url attribute, like: td {background-image: url('myGif.gif');} This blocks our production from rolling out on IE7. Is there any channel to submit this bug? TIA, www.axeldahmen.com Axel Dahmen
Here's a HTML showing the problem (it appears that an image applied to the body element does not scale along with the document): <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Scaling Problem Demonstration</title> <style type="text/css"> body { background-image: url('test.gif'); background-repeat:repeat-y; } </style> </head> <body> <table> <tr> <td>This is a test text.</td> </tr> </table> </body> </html>