0

我现在有我的代码....

<td> <a href="http://www.canvasbay.co.uk/pages.php?pID=5&CDpath=0">Get Started!</a></td> 

超链接的颜色在 css 样式表中,但是我希望这个特定的 TD 不同,所以我使用以下...

<td> <a style="color: #800000" href="<?php echo tep_href_link(FILENAME_DEFAULT); ?>"><?php echo MENU_TEXT_HOME;?></a></td>  

这适用于颜色,但是如何更改鼠标悬停的颜色?

我试图通过复制原件并更改字母来再次输入样式表,但这没有用,我的原始样式表在下面......

CSS

 a { 
      color: #000000; 
      text-decoration: none; 
      font-weight: normal; 
      }
      a:hover { 
      color: #ed1c24;
      text-decoration: none; 
      }

提前谢谢了。

4

3 回答 3

3

您始终可以将类应用于<td>元素本身:

<td class="myClass"> <a href="http://www.canvasbay.co.uk/pages.php?pID=5&CDpath=0">Get Started!</a></td>

然后修改css以仅针对a该类中的元素:

.myClass a { 
      color: #000000; 
      text-decoration: none; 
      font-weight: normal; 
      }
.myClass a:hover { 
      color: #ed1c24;
      text-decoration: none; 
      }
于 2013-11-06T14:39:46.897 回答
1

您可以将 ID 或类放入 td 并仅定位

.myachor a:hover{color:#FFF !important;}
于 2013-11-06T14:37:53.747 回答
1

这样做

.specialtd:hover
{
color: #ed1c24 !important;
text-decoration: none; 
}

<td class="specialtd"> <a style="color: #800000" href="<?php echo tep_href_link(FILENAME_DEFAULT); ?>"><?php echo MENU_TEXT_HOME;?></a></td> 
于 2013-11-06T14:39:52.787 回答