2017-08-17 7 views
1

私はHTML入力を持っています。
小さなヘルプテキストはJqueryで埋められます。
私の問題は、input-group-addonの高さがすべてsmall要素まで伸びていくことです。私はそれが入力と同じくらい高いのが好きです。
どうすればこの問題を解決できますか?ブートストラップ入力グループ - >アドオン&ヘルプテキスト、アドオンハイト付きの入力?

<div class="input-group"> 
    <div class="input-group-addon">Obj. Nr</div> 
    <input type="text" class="form-control"> 
    <small class="form-text text-muted"></small> 
</div> 

enter image description here

答えて

3

だけinput

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/> 
 
<div class="col-sm-6"> 
 
    <div class="input-group"> 
 
     <div class="input-group-addon">Obj. Nr</div> 
 
     <input type="text" class="form-control">  
 
    </div> 
 
    <small class="form-text text-muted">Small element</small> 
 
</div>

small要素を追加
関連する問題