1
I need to make a button like this for my site but I’m not getting?
How to do this in html and css and bootstrap? I even tried to do it like this, but it doesn’t work.
<div class="btn-group inline" role="group" aria-label="Basic example">
<input type="button" class="btn btn-secondary" value="+">
<input class="form-control" type="number" name="quantidade" onchange="preencheTotalProduto()" min="0" max="<?= $tamanho['estoque'];?>" value="0">
<input type="button" class="btn btn-secondary" value="-">
</div>
your problem is with the layout, or is it with respect to clicking on the + or - and changing the value of the input?
– hugocsl