Despite my efforts to find a solution on Stackoverflow, I have not been able to locate exactly what I need.
I am trying to evenly space and center three columns across my page. However, when I assign col-md-4 to each column, they end up too close together. How can I create some spacing between the columns, around 10-15px, without pushing them onto another row?
Below is an example of the code:
<div class="row-fluid">
<div class="col-md-4">
<p>Content for this column</p>
</div>
<div class="col-md-4">
<p>Content for this column</p>
</div>
<div class="col-md-4">
<p>Content for this column</p>
</div>
</div>
I've attempted various suggestions like placing them in another div with padding, but nothing seems to work. Any help or advice would be greatly appreciated!