How can I create an input-group for increasing or decreasing numbers?
Below is the code I have:
<div class="input-group input-group-sm">
<input type="text" class="form-control" placeholder="0.9">
<div class="btn-group-vertical">
<button class="btn btn-primary btn-sm" type="button">+</button>
<button class="btn btn-primary btn-sm" type="button">-</button>
</div>
</div>
Here is the current result:
https://i.sstatic.net/nVMUF.png
The expected result should look like this: