链接格式与内部链接CSS

时间:2018-05-07 19:45:03

标签: html css

这里的基本问题...试图找出如何使用字体和颜色格式化链接并使其可点击。当我使用这段代码时,我能够让字体和颜色看起来像我想要的那样,但是我无法制作可点击的内容:

timerfd_create

但我可以点击链接,但如果我使用以下代码,则无法获得我想要的格式:

<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>

我缺少什么才能让我的格式化工作,并使链接可以点击调查? (SurveyURL和SurveyLink实际上使用相同的参考FYI)谢谢。

2 个答案:

答案 0 :(得分:0)

该链接是可点击的,但您在font-family: Arial, sans-serif之后忘记了分号,这意味着其余的样式不适用。

我不确定您指向的链接(${1://SurveyURL})是什么,但可以肯定地点击它。

.link {
  font-size: 12px;
  font-family: Arial, sans-serif;
  color: #888888;
  text-align: center;
  background-color: rgb(245, 245, 245);
}

a {
  font-family: Arial, sans-serif;
  color: #888888;
  text-decoration: underline;
}
<table border="0" cellpadding="1" cellspacing="1" style="width:500px;">
  <tbody>
    <tr>
      <td class="link" colspan="2">
        <a conversion="true" href="${1://SurveyURL}" target="_blank">What do you think?</a>
      </td>
    </tr>
  </tbody>
</table>

答案 1 :(得分:0)

您只是错过了font-family风格的分号:

<style>
  .tableLink a  { color: #888888;}
</style>

<table border="0" cellpadding="1" cellspacing="1" style="width:500px;">
  <tbody>
    <tr>
      <td colspan="2" style="font-size: 12px; font-family: Arial, sans-serif; text-align: center; background-color: rgb(245, 245, 245); text-decoration: underline;">
        <span class="tableLink">${l://SurveyLink?d=What%20do%20you%20think?}</span>
      </td>
    </tr>
  </tbody>
</table>