English 中文(简体)
电子邮件图像地图——只有最后一块地区工程
原标题:Gmail image map - only the last area works

Im 制作一个带有图像图的超文本电子邮件,其中有两个直径区:

<img src="newsletter_files/background.jpg" width="600" height="584" border="0" alt="39steps crimbo cards" usemap="#email">

<map name="email">
<area shape="rect" name="emailaddress" coords="212,305,350,290" href="mailto:[email protected]" alt="Email [email protected]" />
<area shape="rect" name="website" coords="585,485,465,550" href="http://www.domain.co.uk" target="_blank" alt="Domain link" />
</map>

只能是第二件工程。 第一个问题被忽视。 我用谷歌解决问题,但找不到任何东西。

我可以打断图像,但会在测试等方面造成自己的问题,因为电子邮件非常简单,因此,图像图是最佳方法。

任何人都有类似的问题?

最佳回答

我不提电子邮件中的形象图(主要是因为我从未使用过这些地图)。

What I suggest is open the image in photoshop and use the slice tool. When you save you can save images and html. The html outputted will be perfect for emails.

电子邮件:

  • ALWAYS use tables
  • NEVER use p tags
  • always put display:block on your images (this prevents unwanted gaps between images on some email clients
问题回答

这与你的形象图无关。 第一个环节被忽略,因为它带有邮件:电话。 邮递如果含有邮件,则将胶卷从中除:

I just read something interesting from Constant Contact. here is what it said:

如果存在图像图标,则在硬性超文本电子邮件中,如果标签与以下例子一样封闭,超级链接即与邮件链接。

    <area shape="rect" coords="88,23,166,38" href="mailto:[email protected]"/>

......超文本链接不会起作用。 简单地消除了结局,将使这一联系再次活跃。

• 在与URL的正常超文本链接中,将用一个定制的超文本电子邮件进行结局。

• Leaving a closing forward slash after a mailto: link in a custom XHTML email will work. But -

• 邮局发出一个封闭式闪光:在定制的超文本电子邮件中链接,NOT将发挥作用。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签