以下是代码:
<div style="width:400px">
some text..
<input type="text" />
<button value="click me" />
</div>
如何使输入元素展开以填充所有剩余空间,同时保持在同一条线上? 如果我把它100%放到它自己的一行......
答案 0 :(得分:54)
请参阅: http://jsfiddle.net/thirtydot/rQ3xG/466/
这适用于IE7 +和所有现代浏览器。
.formLine {
overflow: hidden;
background: #ccc;
}
.formLine input {
width: 100%;
}
.formLine label {
float: left;
}
.formLine span {
display: block;
overflow: hidden;
padding: 0 5px;
}
.formLine button {
float: right;
}
.formLine input, .formLine button {
box-sizing: border-box;
}
<div class="formLine">
<button>click me</button>
<label>some text.. </label>
<span><input type="text" /></span>
</div>
button
必须在HTML中排在第一位。有点令人反感,但是很喜欢。
关键步骤是使用overflow: hidden;
:为什么这是必要的解释在:
input
周围的额外范围是必要的,因为display:block;
对input
无效:What is it in the CSS/DOM that prevents an input box with display: block from expanding to the size of its container
答案 1 :(得分:4)
如果您想要跨浏览器决定,可以使用表格
<table>
<tr>
<td>some text</td>
<td><input type="text" style="width:100%" /></td>
<td><button value="click me" /></td>
</tr>
</table>
如果你不能使用表格会更困难。 例如,如果您确切知道某些文本的宽度,可以尝试这种方式:
<div style="padding:0px 60px 0px 120px;">
<div style="width:120px; float:left; margin:0px 0px 0px -120px;">some text</div>
<input type="button" style="width:50px; float:right; margin:0px -55px 0px 0px;" />
<input type="text" style="width:100%;" />
</div>
答案 2 :(得分:0)
如果您不关心旧浏览器支持(IE&lt; = 9),请使用flexbox layout:
div{
background-color: red;
display: flex;
display: -webkit-flex;
display: -ms-flex;
display: -moz-flex;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-moz-flex-wrap: wrap;
}
div input {
flex: 1;
-webkit-flex:1;
-ms-flex: 1;
-moz-flex: 1;
min-width: 200px;
}