1. الرئيسية
  2. /
  3. المدوّنة
  4. /
  5. hover and active in css
CSS

hover and active in css

September 27, 2022 1 دقيقة قراءة 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" />

شارك المقال:
اقرأ أيضاً

مقالات ذات صلة