Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created June 6, 2012 22:33
Show Gist options
  • Save claudiosanches/2885248 to your computer and use it in GitHub Desktop.
Save claudiosanches/2885248 to your computer and use it in GitHub Desktop.
Input with CSS3 transition
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Input with CSS3 transition</title>
<style>
#search {
width: 150px;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#search:focus {
width: 350px;
}
</style>
</head>
<body>
<input id="search" type="text" value="" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment