首页htmltargetCSS Property Value - 如何使用target属性点击后主动突出显示

CSS Property Value - 如何使用target属性点击后主动突出显示

我们想知道如何使用target属性点击后主动突出显示。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h1:target {
  color: #FF0000;
}
</style>
</head>
<body>
  <a href='#id1'>ID1</a>
  <a href='#id2'>ID2</a>
  <h1 id="id1">This is the header</h1>
  <h1 id="id2">This is the header</h1>
</body>
</html>