##CSS3 transform translate
Created
July 26, 2015 23:39
-
-
Save anonymoussc/014badd68516d1e96b8d to your computer and use it in GitHub Desktop.
CSS3 transform translate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>CSS3 transform translate</title> | |
<link href="style.css" rel="stylesheet"/> | |
</head> | |
<body> | |
<h2>transform: translateX(100px)</h2> | |
<div class="transformTranslate"> | |
<h2>.transformTranslate</h2> | |
</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.transformTranslate { | |
display : block; | |
width : 400px; | |
height : 50px; | |
border : 1px solid blue; | |
background-color : #FF0099; | |
} | |
.transformTranslate:hover { | |
-webkit-transform : translateX(100px); | |
transform : translateX(100px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment