首頁 > web前端 > css教學 > 如何使輸入欄位填滿固定寬度容器中的剩餘空間?

如何使輸入欄位填滿固定寬度容器中的剩餘空間?

Patricia Arquette
發布: 2024-11-15 11:18:03
原創
392 人瀏覽過

How to Make an Input Field Fill Remaining Space in a Fixed-Width Container?

Achieving Fluid Width for Input Elements within Fixed-Width Containers

Question:

How can an input field be styled to occupy the available remaining space within its fixed-width container, without text wrapping or the need to determine label size beforehand?

Answer:

To achieve this effect, consider the following:

  1. Wrapper Span: Wrap the input field within a span element set to display: block.
  2. Positional Order: Place the "button" (or other elements) before the input field.
  3. Floating: Float the "button" (or other elements) to the right to allow the input field to fill the remaining space.

Example Code:

<form method="post">
  <button>Search</button>
  <span><input type="text" title="Search" /></span>
</form>
登入後複製
form {
  width: 500px;
  overflow: hidden;
  background-color: yellow;
}

input {
  width: 100%;
}

span {
  display: block;
  overflow: hidden;
  padding-right: 10px;
}

button {
  float: right;
}
登入後複製

以上是如何使輸入欄位填滿固定寬度容器中的剩餘空間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板