I am attempting to align the B1 button on the left side and have the remaining elements positioned on the right side.
Below is my code snippet using Bootstrap 4.1:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<div class="modal-footer">
<div class="clearfix">
<button type="button" id="b1" class="btn btn-primary float-left">B1 ACTION</button>
<div class="float-right">
<button type="button" id="b2" class="btn btn-primary">B2 ACTION faltas</button>
<a href="" id="b3" target="_blank" class="btn btn-primary">B3 ACTION</a>
<button type="button" id="b4" class="btn btn-primary btn-danger">B4 ACTION</button>
</div>
</div>
</div>
Regrettably, the code is not functioning as intended. Does anyone have any suggestions on how to rectify this issue?