CSS Property Value How to - Highlight on active with clicking with target attribute








Question

We would like to know how to highlight on active with clicking with target attribute.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h1:target {<!--  w  w  w .  j a va 2s  .  c o  m-->
  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>

The code above is rendered as follows: