Search
 
SCRIPT & CODE EXAMPLE
 

CSS

increase the size of an image on hover using css

img { 
	transition: all .2s ease-in-out; 
}
img:hover { 
    	transform: scale(1.5); 
    }
Comment

resize image slowly on hover

.grow { 
	transition: all .2s ease-in-out; 
}
	.grow:hover { 
    	transform: scale(1.1); 
    }
Comment

PREVIOUS NEXT
Code Example
Css :: how to contain an image within a div 
Css :: css image transform flip mirror 
Css :: css fixed center vertical 
Css :: css td align center vertical 
Css :: css text auto break line 
Css :: remove underline from a link css 
Css :: font shadow css 
Css :: customize scrollbar 
Css :: css percent minus pixel 
Css :: center a div css 
Css :: css gradient text 
Css :: make ane element not selectable css 
Css :: media query 
Css :: how to remove link blue color from a tag using css 
Css :: remove scrollbar css 
Css :: alternatives to display none 
Css :: ul no indent 
Css :: italic text css 
Css :: how to make animation stay on 100% 
Css :: restrict a paragraph height css 
Css :: css img scale-down 
Css :: Remove Or Hide Default Spinner Input Number 
Css :: mixin for transition css 
Css :: ignore cache pip 
Css :: transition scale 
Css :: css prevent line break 
Css :: how to hide scrollbar css 
Css :: remove marker from li tag 
Css :: div fit content height 
Css :: css click through an element 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =