HTML Element Style How to - Make rectangle anchor clickable








Question

We would like to know how to make rectangle anchor clickable.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#backbutton {<!--   w  ww .  java2  s .  c o  m-->
  display: block;
  width: 100px;
  height: 100px;
  background: red;
}

#backbutton:hover {
  background: cyan;
}

#backbutton:active {
  background: blue;
}
</style>
</head>
<body>
  <a id="backbutton" href=""></a>
</body>
</html>

The code above is rendered as follows: