Skip to content

Instantly share code, notes, and snippets.

@thedaviddias
Created November 9, 2012 11:34
Show Gist options
  • Save thedaviddias/4045256 to your computer and use it in GitHub Desktop.
Save thedaviddias/4045256 to your computer and use it in GitHub Desktop.
CSS: Animated expanding search input
.search {
width: 75px;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
transition: all .5s ease;
}
.search:focus {
width: 200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment