I am new to working with Bootstrap and I am attempting to shift a container to the left within another container, but so far have been unsuccessful.
In this image, you can see my attempt at moving the div containing a checkbox to the left
I attempted to assign an "ml-0" class to the inner container, however this did not produce the desired result. Can anyone identify what is wrong with my code?
<div id="prog-lang-selection-row-1" class="container-fluid">
<div id="desktop-development-div" class="container ml-0">
<input type="checkbox" name="desk-development-checkbox" id="desk-development-checkbox">
</div>
</div>