I am trying to make a shopping cart similar to this:
But I can't seem to figure out how to get Local Delivery on the left and the circle (with the plus) inside of it on the right hand side.
HTML:
<div class="col" style="width:342px;height:69px;">
<p class="text-left center-block" style="width:451px;padding:-22px;">Local Delivery<button class="btn btn-primary align-items-center" type="button" id="cartHaz" style="padding:1px;margin:15px;"></button></p>
CSS:
element.style {
width:518px;
height:68px;
}
.d-flex {
display:-ms-flexbox!important;
display:flex!important;
}
.form-row {
display:-ms-flexbox;
display:flex;
-ms-flex-wrap:wrap;
flex-wrap:wrap;
margin-right:-5px;
margin-left:-5px;
}
div {
resize:both;
height:auto;
}
I've already tried creating two columns in a single row and then floating the circle button to the right but it didn't work.


Follow this code
Hope it solves your problem !!