HTML Element Style How to - Style anchor to a button like with click effect








Question

We would like to know how to style anchor to a button like with click effect.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.txt {<!--from  w w  w .j av  a  2s .  c o  m-->
  line-height: 50px;
  padding: 5px 20px 5px 20px;
  background-color: red;
  text-decoration: none;
  border-radius: 10px;
  margin-left: 50px;
  margin-top: 100px;
  font-family: verdana;
  border: 2px solid black;
  color: #fff;
}

.txt:active {
  background-color: aqua;
  color: #000;
}
</style>
</head>
<body>
  <a href="#" class="txt">Yo</a>
</body>
</html>

The code above is rendered as follows: