私はform-inline
を適用したBootstrapフォームをいくつか持っています。私は768pxまで、要素がインラインで保持されていることを読んだ。しかし、これが当てはまらない場合は、input-lg
をいくつかの要素に代入すれば、最後の要素は768pxを上回る新しい行でブレークします。ブートストラップのインライン入力要素を768pxまで水平に保つ?
これらの要素を768pxまで小さくすることもできます。これを行う方法はありますか?
コード:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<form class="form-inline">
<div class="form-group">
<input type="text" class="form-control input-lg" placeholder="Your Title">
</div>
<div class="form-group">
<input type="text" class="form-control input-lg" placeholder="Your Description">
</div>
</form>
あなたはあまりにもコードを投稿することができますか? – ZimSystem
@ZimSystem投稿 – anemaria20