<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">a:hover：鼠标移上去变色

&lt;style type="text/css"&gt;
&lt;!--
a:link {
 color: #000000;
 text-decoration: none;
}
a:visited {
 color: #333333;
 text-decoration: none;
}
a:hover {
 color: #CC0000;
 text-decoration: none;
}
--&gt;
&lt;/style&gt;
</pre></body></html>