首页htmlaHTML Element Style - 如何anchor:link,visited,hover,active

HTML Element Style - 如何anchor:link,visited,hover,active

我们想知道如何anchor:link,visited,hover,active。

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of setting link styles</title>
<style type="text/css">
a:link {
  color: #FF0000;
  text-decoration: none;
}

a:visited {
  color: #00FF00;
}

a:hover {
  color: #FF00FF;
  text-decoration: underline;
}

a:active {
  color: #0000FF;
}
</style>
</head>
<body>
  <p>
    <a href="http://www.w3cschool.cn/" target="_top">Visit
      Tutorial</a>
  </p>
</body>
</html>