I'm having trouble floating two divs within a row or container div. Despite using the classes .justify-content-md-start and .justify-content-md-end, the divs remain next to each other without any float.
I've also tried using classes like float-left and float-right, but encountered the same issue.
<div class="container kategoria_page_info_2">
<div class="row">
<div class="d-flex align-items-center">
<div class="justify-content-md-start"><span class="category_page_count_">There are a total of 7 products in this category.</span></div>
<div class="justify-content-md-end">
<form method="get" name="listing_items">
<select class="form-control" onchange="listing_items.submit()" name="order">
<option value="id_desc">Newest Products</option>
<option selected="selected" value="id_asc">Oldest First</option>
<option value="nev_asc">Name, A – Z</option>
<option value="nev_desc">Name, Z - A</option>
<option value="price_asc">Price Low to High</option>
<option value="price_desc">Price High to Low</option>
</select>
</form>
</div>
</div>
</div>
</div>
My goal is to position the .justify-content-md-start div on the left side of the row and the justify-content-md-end div on the right side of the row.