如何在PHP中强制链接颜色为蓝色而不是紫色

时间:2016-03-16 12:00:53

标签: php

我正在使用php,我有一些<a>标签。我想要点击一些<a>以“不将链接颜色更改为紫色”,只需将其保持为蓝色即可。我怎么能这样做?

<html>
<head>
<style type=”text/css”>
a:visited, a:link, a:hover  {
    font-family : Verdana, Trebuchet MS, Arial, Helvetica, sans-serif;
    color           : blue;
}

a:visited, a:link {
   text-decoration : none;
   color           : blue;
}

a:hover  {
    color           : blue;
    text-decoration : underline;
}
</style>
</head>
<body>
<?php
echo "<td><a href=data/$jobid.blast$page.html#$element[1]$element[2] target='_blank'>$element[3]</a></td>";
?>

感谢。

2 个答案:

答案 0 :(得分:0)

试试这个。

{{1}}

答案 1 :(得分:0)

这是css问题,而不是php。

您需要以下内容:

a:visited {
    color: blue;
}