FOcus

by Kondal Durgam

HTML

<div>
  <button class="btn" type ="button" name="button">
  click
</button>
</div>

CSS

.btn{
  color : #000;
  background:red;
}
.btn:focus{
  background: green;
}