My goal is to create two divs that each take up 6 columns with a space of 1px between them.
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<div class="container-fluid">
<div class="row">
<div class="col-6 bg-dark text-light text-center mr-1"> Hello </div>
<div class="col-6 bg-danger text-light text-center"> Hello </div>
</div>
</div>
However, when I try to achieve this layout, one item wraps underneath instead of remaining side by side. Do you have any suggestions on how to make both items occupy 6 columns with spacing in between while staying next to each other?