Skip to content

Instantly share code, notes, and snippets.

@eternalruler
Created February 23, 2014 03:21
Show Gist options
  • Save eternalruler/9166361 to your computer and use it in GitHub Desktop.
Save eternalruler/9166361 to your computer and use it in GitHub Desktop.
Auto-Resizing Search Bar
<!DOCTYPE>
<html>
<head>
<style>
input {
width:60px;
transition-duration:0.5s;
}
input:focus {
width:200px;
}
</style>
</head>
<body>
<input placeholder="Search"></input>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment