删除图像映射HTML中的蓝色链接

时间:2014-12-04 09:22:13

标签: html hyperlink imagemap

我正在为带有html地图的客户端构建电子邮件。但是,我似乎无法获得链接周围的蓝线(点击后)消失。

我需要帮助。

<p> <br>
      <img alt="Hogan" src="http://lsa5.0.assets.s3.amazonaws.com/wp-content/uploads/2014/12/club_DEM_HK-LifeStyleAsia.jpg"
        style="border-style: none"
        usemap="#map1417501545030"><map
        border:="0"
        border-color="transparent"
        id="map1417501545030"
        name="map1417501545030"
        usemap="#map1417501545030]">
        border:="0" <area alt="" border="0" coords="300,115,347,132" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&amp;c=20&amp;mc=click&amp;pli=11769974&amp;PluID=0&amp;ord=%%CACHEBUSTER%%"
          shape="alt=&quot;&quot;"
          target="_self"
          title="">
        <area alt="" border="0" coords="9,925,631,1527" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&amp;c=20&amp;mc=click&amp;pli=11769971&amp;PluID=0&amp;ord=%%CACHEBUSTER%%"
          shape="rect"
          target="_self"
          title="">
        <area alt="" border="0" coords="329,681,632,911" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&amp;c=20&amp;mc=click&amp;pli=11769977&amp;PluID=0&amp;ord=%%CACHEBUSTER%%"
          shape="rect"
          target="_self"
          title="">

2 个答案:

答案 0 :(得分:0)

尝试设置

style=" outline: none;"

到链接的元素。

答案 1 :(得分:0)

下面应该做的诀窍:

 style="outline: none;"

此处我已将其添加到您的HTML中。

&#13;
&#13;
<p> <br>
      <img alt="Hogan" src="http://lsa5.0.assets.s3.amazonaws.com/wp-content/uploads/2014/12/club_DEM_HK-LifeStyleAsia.jpg"
        style="border-style: none"
        usemap="#map1417501545030"><map
        border:="0"
        border-color="transparent"
        id="map1417501545030"
        name="map1417501545030"
        usemap="#map1417501545030]">
        border:="0" <area alt="" border="0" coords="300,115,347,132" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&amp;c=20&amp;mc=click&amp;pli=11769974&amp;PluID=0&amp;ord=%%CACHEBUSTER%%"
          shape="alt=&quot;&quot;"
          target="_self"
          title="" style="outline: none;">
        <area alt="" border="0" coords="9,925,631,1527" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&amp;c=20&amp;mc=click&amp;pli=11769971&amp;PluID=0&amp;ord=%%CACHEBUSTER%%"
          shape="rect"
          target="_self"
          title="" style="outline: none;">
        <area alt="" border="0" coords="329,681,632,911" href="http://bs.serving-sys.com/BurstingPipe/adServer.bs?cn=tf&amp;c=20&amp;mc=click&amp;pli=11769977&amp;PluID=0&amp;ord=%%CACHEBUSTER%%"
          shape="rect"
          target="_self"
          title="" style="outline: none;">
&#13;
&#13;
&#13;