给文本输入剩余的宽度

时间:2014-12-13 22:10:26

标签: html css html5

我有一个标签,输入和按钮一行。标签和按钮的宽度是动态的,它们采用它们包含的文本的宽度。标签与左侧对齐,按钮在右侧。

我希望按钮与最右边对齐,中间的输入占用所有剩余空间。

我在按钮上放了一个float: right,但是如果我将输入的宽度放到100%,它就会转到下一行,就像一个块元素。

什么是最好/最简单的方式来实现我在这里尝试做什么?这对我来说有点棘手。我不知道该怎么做。

label {
  margin-right: 10px;
}
input[type=text] {
  width: 355px; /*100% doesnt work*/
  height: 20px;
  padding: 5px 10px;
}
input[type=text]:focus {
  outline: 0;
}
button {
  margin-left: -1px;
  float: right;
  vertical-align: bottom;
}
<fieldset class="last">
  <label for="place">Any text here:</label>
  <input type="text" id="place" value="Test value">
  <button>Click</button>
</fieldset>

JSFiddle Demo

2 个答案:

答案 0 :(得分:0)

这有点像一种hacky方式:

table {
  width: 100%;
}
.fixedText {
  width: 1px;
  white-space: nowrap;
}
.relativeText {
  width: 100%;
  }
#place {
  width: 100%;
  }
<table>
  <tr>
    <td class="fixedText">
      <label for="place">Any text here:</label>
    </td>
    <td class="relativeText">
      <input type="text" id="place" value="Test value">
    </td>
    <td class="fixedText">
      <button>Click</button>
    </td>
  </tr>
</table>

答案 1 :(得分:0)

只是为了告诉你,你也可以在没有桌子的情况下做到这一点(虽然我可能会选择display: table-cell)。

首先将labelbutton向左和向右浮动。在input周围添加一个包装器。包装器获取overflow: hidden,它会创建一个新的块格式化上下文,有关背景信息,请参阅http://www.stubbornella.org/content/2009/07/23/overflow-a-secret-benefit/。简而言之,这允许包装器占用剩余空间。

之后,我们会对paddingbox-sizingheightline-height应用一些修正,以使其全部恢复正常。

label {
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  float: left;
}
.wrapper {
    overflow: hidden;        
}
input[type=text] {
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  box-sizing: border-box; 
}
input[type=text]:focus {
  outline: 0;
}
button {
  margin-left: -1px;
  float: right;
}
<fieldset class="last">
  <label for="place">Any text here:</label>
  <button>Click</button>
  <div class="wrapper"><input type="text" id="place" value="Test value"></div>
</fieldset>