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



我正在为一个带有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="">

尝试设置

style=" outline: none;"

到链接的元素。

下面应该可以解决问题:

 style="outline: none;"

在这里,我已将其添加到您的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="" 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;">

最新更新