Horje
increase the size of an image on hover using css Code Example
increase the size of an image on hover using css
img { 
	transition: all .2s ease-in-out; 
}
img:hover { 
    	transform: scale(1.5); 
    }
resize image slowly on hover
.grow { 
	transition: all .2s ease-in-out; 
}
	.grow:hover { 
    	transform: scale(1.1); 
    }




Css

Related
how to use gradient as text color Code Example how to use gradient as text color Code Example
add gradient to text css Code Example add gradient to text css Code Example
css strikethrough Code Example css strikethrough Code Example
connect html file to css Code Example connect html file to css Code Example
how to give shadow to navbar Code Example how to give shadow to navbar Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12