1
I have a checkbox within a column and would like to put it at the top-right.
My template:
<div class="row">
<div class="col-11">
<h4 class="card-title">Bolsa camuflada</h4>
</div>
<div class="col-1 alinhaDireita">
<div class="col-12 col-sm-9">
<div id="checkpossuiwhats" class="custom-control custom-checkbox check">
<input type="checkbox" id="checkwhats" name="checkwhats" class="custom-control-input">
<label class="custom-control-label" for="checkwhats"></label>
</div>
</div>
</div>
</div>
In this class "Right Line" I tried some things like:
float: right;
I also tried to:
position: absolute;
top: 0px
right: 0px
But nothing seems to change much.
My element:
I also tried the child element (col-12,col-Sm-9), but it doesn’t change much.