E
ecuisinetest
I have some HTML that is being sent via email through an ASP.NET app.
It displays fine in
yahoo mail but not in gmail or hotmail. Can anybody shed some light.
Here is a link to a sample page
http://www.alliedtechnical.net/test.html
and the source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Test Page for Background Image Problem</title>
</head>
<body>
<div>
Just the image as an img tag...<br />
<img src='http://www.ecuisine.net/templates/6_footer.jpg'
alt="" />
<br />A table with a backgound-image on the table tag...<br />
<table width="600" style="height:324px;background-
image:url('http://www.ecuisine.net/templates/
6_footer.jpg');background-
repeat:no-repeat;">
<tr>
<td align="center" valign="middle">
Some data to fill the cell
</td>
</tr>
</table>
<br />A table with a backgound-image on the td tag...<br />
<table width="600">
<tr>
<td align="center" valign="middle" style="height:
324px;background-image:url('http://www.ecuisine.net/templates/
6_footer.jpg');background-repeat:no-repeat;">
Some data to fill the cell
</td>
</tr>
</table>
</div>
</body>
</html>
It displays fine in
yahoo mail but not in gmail or hotmail. Can anybody shed some light.
Here is a link to a sample page
http://www.alliedtechnical.net/test.html
and the source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Test Page for Background Image Problem</title>
</head>
<body>
<div>
Just the image as an img tag...<br />
<img src='http://www.ecuisine.net/templates/6_footer.jpg'
alt="" />
<br />A table with a backgound-image on the table tag...<br />
<table width="600" style="height:324px;background-
image:url('http://www.ecuisine.net/templates/
6_footer.jpg');background-
repeat:no-repeat;">
<tr>
<td align="center" valign="middle">
Some data to fill the cell
</td>
</tr>
</table>
<br />A table with a backgound-image on the td tag...<br />
<table width="600">
<tr>
<td align="center" valign="middle" style="height:
324px;background-image:url('http://www.ecuisine.net/templates/
6_footer.jpg');background-repeat:no-repeat;">
Some data to fill the cell
</td>
</tr>
</table>
</div>
</body>
</html>