Utilizing bootstrap, I am aiming to position two wells
side by side without them being squeezed right next to each other. However, I am encountering some issues with achieving this.
Here's the code snippet I am currently using:
<div class="container">
<div class="row">
<div class="col-sm-4 well"> first column</div>
<div class="col-sm-4 well"> second column</div>
</div>
</div>
I've been referring to a tutorial that has similar code structure but displays spaces between the wells on their webpage. Any suggestions on how to have spacing between the two wells within the same row? Your help is greatly appreciated.