国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁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.yjpub.cn/" target="_top">Visit
      Tutorial</a>
  </p>
</body>
</html>