4
で先に行く私は、同じ行にすべてのコントロールを置くform-inline
クラスを使用していますが、私は、ウィンドウのサイズを変更すると、テキストボックスの近くにボタンが次の行に行くことに気づきました。私はこれを防止したい。画像を見てみましょう:防止制御は、フォームインライン
を、これはコードです:
<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<div class="container">
<div class="row">
<div class="col-xs-2 hideable-sidebar">
<div class="well">
<span><b>Resources</b></span>
<form class="form-inline">
<input type="text" placeholder="type text here"
class="form-control" id="resource_filter" />
<button class="clear btn btn-default btn-sm" type="button"
title="clean">
<span class="glyphicon glyphicon-repeat"></span>
</button>
</form>
</div>
</div>
</div>
</div>
サイズを変更すると、あなたの窓は小さくなるが、あなたのテキストボックスにはありません。したがって、ウィンドウの幅がテキストボックスとボタンの両方を保持するのに十分でない場合、ボタンは次の行にプッシュされます。これを防ぐには、テキストボックスのサイズも動的に調整する必要があります。 – Alic