我一直试图让我的搜索框向左展开,但我还没有能够使它工作,所以对这个问题的任何帮助都会非常感激。
如果你发现任何其他错误,请随时纠正我,并以正确的方式指导我。
<div class="search">
<form>
<input type="text" placeholder="Search">
</form>
</div>
查看jsFiddle
答案 0 :(得分:1)
也许:
添加
right:0; to .search{...}
答案 1 :(得分:0)
这是完整的搜索框
input {
outline: none;
}
input[type=search] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
font-family: inherit;
font-size: 100%;
}
input[type=search] {
border: solid 1px #ccc;
padding: 9px 10px 9px 10px;
width: 55px;
-webkit-border-radius: 10em;
-moz-border-radius: 10em;
border-radius: 10em;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
}
input[type=search]:focus {
width: 130px;
background-color: #fff;
border-color: #66CC75;
-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
box-shadow: 0 0 5px rgba(109,207,246,.5);
}