首页htmlaHTML Element Style - 如何聚焦时的样式链接

HTML Element Style - 如何聚焦时的样式链接

我们想知道如何聚焦时的样式链接。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
a {
  color: #000;
}

a:focus {
  background-color: #000;
  color: #fff;
}
</style>
</head>
<body>
  <a href="#">a link</a>
</body>
</html>