Input group – two inputs close to each other
working workaround: <div class=”input-group”> <input type=”text” class=”form-control input-sm” value=”test1″ /> <span class=”input-group-btn” style=”width:0px;”></span> <input type=”text” class=”form-control input-sm” value=”test2″ /> </div> downside: no border-collapse between the two text-fields, but they keep next to each other http://jsfiddle.net/EfC26/ Update thanks to Stalinko This technique allows to glue more than 2 inputs. Border-collapsing is achieved using “margin-left: -1px” (-2px … Read more