Is there a way to align one div on the right side, but within the same row? I am trying to place the value 172.21 on the right side of the row.
Check out the screenshot here: https://i.sstatic.net/eg3K5.png
Here is the HTML:
<div class="row">
<div class="col-md-6">
<h4>Status</h4>
<input type="checkbox" disabled checked data-toggle="toggle" data-onstyle="outline-success" data-offstyle="outline-danger">
</div>
<div class="col-md-3">
<h4>Max Demand </h4>
</div>
<div class="col-md-3 text-right">
<h4>172.21</h4>
</div>
</div>