【发布时间】:2018-05-08 04:38:59
【问题描述】:
这里的基本问题...试图弄清楚如何用字体和颜色格式化链接并使它们可点击。当我使用这段代码时,我能够让字体和颜色看起来像我想要的那样,但我无法使可点击:
<table border="0" cellpadding="1" cellspacing="1" style="width:500px;">
<tbody>
<tr>
<td colspan="2" style="font-size: 12px; font-family: Arial, sans-serif color: #888888; text-align: center; background-color: rgb(245, 245, 245);"><a conversion="true" href="${1://SurveyURL}" style="font-family: Arial, sans-serif; color:#888888; text-decoration: underline" target="_blank">What do you think?</a></td>
</tr>
<tr>
但是如果我使用以下代码,我可以使链接可点击,但无法获得我想要的格式:
<table border="0" cellpadding="1" cellspacing="1" style="width:500px;">
<tbody>
<tr>
<td colspan="2" style="font-size: 12px; font-family: Arial, sans-serif color: #888888; text-align: center; background-color: rgb(245, 245, 245);"><span style="color:#888888;">${l://SurveyLink?d=What%20do%20you%20think?}</span></td>
</tr>
为了使我的格式正常工作并使调查链接可点击,我缺少什么? (SurveyURL 和 SurveyLink 实际上使用相同的参考仅供参考)谢谢。
【问题讨论】: