You can do this with two fixes:
- Set
display: inline-block to div "tidbit". - Set
white-space: nowrap to the pull-right container.
<div class="container" style="width:500px;> <div class="controls controls-row"> <span class="add-on">This can be quite long</span> <div class="pull-right"> <input class="input-mini" name="Amount" type="number" /> <button type="button" class="btn" style="margin-bottom: 10px">Add</button> <div style="text-align:right; width:40px; display: inline-block;">tidbit</div> </div> </div> </diV>
.pull-right{ white-space:nowrap; }
Script example
Sirko source share