1. Home
  2. /
  3. Blog
  4. /
  5. hover and active in css
CSS

hover and active in css

September 27, 2022 1 min read 2,255
hover and active in css
css-----------
input{
		background: transparent;
		width: 80px;
		height: 45px;
	}

input:hover{
	background: black;
	color: white;
	transition: 2s;


}
input:active{
	background: lightgreen;
	color:yellow;
	transition: 2s;


}

html----------


<input name="" type="button" value="click here" />

Share:
Read next

Related articles