SO animate input box

SO animate input box

by panchroma

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.1.0/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<input class="input-small find " type="text" >

CSS

.container {
    margin-top: 10px;
}
.find {
    text-overflow: ellipsis;
    margin-top: 2px;
}
input.find{
    width:90px;
    transition: all .5s;
-moz-transition:all .5s; /* Firefox 4 */; 
-webkit-transition: all .5s; /* Safari and Chrome */
-o-transition: all .5s; /* Opera */
}
input.find:focus{
 width:200px; 
    
}