我现在有我的代码....
<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;
}
提前谢谢了。