x
 
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
a:link, a:visited { 
  color: /* browser's internal value */;
  text-decoration: underline;
  cursor: auto;
}
a:link:active, a:visited:active { 
  color: /* browser's internal value */;
}
</style>
</head>
<body>
<p>默认情况下,a 元素会这样显示:</p>
<a href="https://www.w3school.com.cn">访问 W3School.com.cn!</a>
<p>自定义的 a 元素(更改 text-decoration 和 color):</p>
<a style="text-decoration:none;color:red;" href="https://www.w3school.com.cn">访问 W3School.com.cn!</a>
</body>
</html>