Home > Article > Web Front-end > How to Make an Input Element Fill the Remaining Width of its Container?
You may often encounter situations where you have an input element alongside a label within a fixed-width container. The objective is to have the input field dynamically adjust its width to fill the remaining space without causing any line breaks.
<br>form {</p> <pre class="brush:php;toolbar:false">width: 500px; overflow: hidden; background-color: yellow;
}
input {
width: 100%;
}
span {
display: block; overflow: hidden; padding-right:10px;
}
button {
float: right;
}
<br><form method="post"></p> <pre class="brush:php;toolbar:false"> <button>Search</button> <span><input type="text" title="Search" /></span>
This solution employs several key techniques:
This approach provides a simple and effective way to dynamically size an input element to fit the remaining width, regardless of the label's length.
The above is the detailed content of How to Make an Input Element Fill the Remaining Width of its Container?. For more information, please follow other related articles on the PHP Chinese website!