我正在使用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>";
?>
感谢。
答案 0 :(得分:0)
试试这个。
{{1}}
答案 1 :(得分:0)
这是css问题,而不是php。
您需要以下内容:
a:visited {
color: blue;
}