通过锚标记制作整个Clickable

时间:2013-07-24 11:12:12

标签: css html-table href html-email newsletter

在为Outlook创建html电子邮件时,我偶然发现了一个我无法解决的小问题。

下面是html表的屏幕截图。我需要使整个区域可以点击而不仅仅是文本。当我将<a href="#">放在<td><table>周围时,它可以在浏览器中使用,但不能在Outlook中使用。

enter image description here

以下是代码:

<table border="0" cellpadding="0" cellspacing="0" style="border-top-left-radius: 5px;border-top-right-radius: 5px;border-bottom-right-radius: 5px;border-bottom-left-radius: 5px;background-color: #2FBA45;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
    <tbody>
        <tr>
            <td align="center" valign="middle" style="font-family: Arial;font-size: 22px;padding: 15px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
                <a href="#" title="Yes please, send me a quote." target="_self" style="font-weight: bold;letter-spacing: -0.5px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;word-wrap: break-word !important; display:block; width:100%; height:100%">Yes please, send me a quote.</a>
            </td>
        </tr>
    </tbody>
</table>

4 个答案:

答案 0 :(得分:1)

我知道这是一个老问题,但我一直在寻找这个问题的答案(Outlook中可点击的整个按钮)并偶然发现以下解决方案:

<table border="0" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <td align="center" valign="middle" >

<!-- start of Outlook compatible button generated by http://buttons.cm/ -->
<div><!--[if mso]>
  <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://yoururlhere.com/" style="height:52px;v-text-anchor:middle;width:330px;" arcsize="10%" stroke="f" fillcolor="#2fba45">
    <w:anchorlock/>
    <center>
  <![endif]-->
      <a href="http://yoururlhere.com/"
style="background-color:#2fba45;border-radius:5px;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:13px;font-weight:bold;line-height:52px;text-align:center;text-decoration:none;width:330px;-webkit-text-size-adjust:none;">Yes please, send me a quote.</a>
  <!--[if mso]>
    </center>
  </v:roundrect>
<![endif]--></div>
<!-- end of Outlook compatible button generated by http://buttons.cm/ -->

            </td>
        </tr>
    </tbody>
</table>

注意我还没有测试过上面的代码。

其他答案确实链接到了campaignmonitor网站,但未链接到this link which provided the solution

campaignmonitor上的博客文章提到,他们根据Stig M(@stigm在Twitter上)创建的解决方案创建了specific website to generate outlook compatible clickable buttons - http://buttons.cm

我不参加竞选活动。

希望能有所帮助。

答案 1 :(得分:0)

试试这个

http://jsfiddle.net/KrRzP/

<table border="0" cellpadding="0" cellspacing="0"   style="border-top-left-radius: 5px;border-top-right-radius: 5px;border-bottom-right-radius: 5px;border-bottom-left-radius: 5px;background-color: #2FBA45;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt; cursor:pointer;">
    <tbody>                 
        <tr>
            <td align="center" valign="middle"  style="font-family: Arial;font-size: 22px;padding: 15px;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;">
                <a  href="http://www.example.org" title="Yes please, send me a quote."  target="_self" style="font-weight: bold;letter-spacing: -0.5px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;word-wrap: break-word !important; display:block; width:100%; height:100%">Yes please, send me a quote.</a>
            </td>  
        </tr>
    </tbody>
</table>

答案 2 :(得分:0)

您可以尝试使用onClick<td onClick="go to anchor">。在内联样式中,您应该添加cursor: pointer,以便将光标更改为“悬停链接”指针。

答案 3 :(得分:0)

尝试删除target="_self"。由于Outlook是一个电子邮件客户端,它可能无法识别它并可能导致该问题。

在旁注中,如果您在电子邮件中使用锚链接(链接在同一页面的其他位置),则并非所有电子邮件浏览器都完全支持此功能。这是support chart