I have an input bar with the css below. Every time it is selected it is supposed to expand. However, it only expands to the left side and not to the right side. (I want it to expand on the right side) This is probably a duplicate so if it is, please mark it as one. However, I just could not find anything that tells me how to do this?
html:
<input placeholder = "search something up"id = "searchbar" name = "search">
css:
#searchbar{
margin-left: 10px;
background: #FFF;
padding: 1px 1px 1px 5px;
position: relative; top: 0; left: 0;
width: 178px;
height: 21px;
outline: none;
border: 1px solid #CCCCCC;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
}
#searchbar:focus{
width: 100%;
background: #FFF;
padding: 1px 1px 1px 5px;
width: 300px;
height: 21px;
border: 1px solid #CCCCCC;
top: 0;
right: 100%;
}