I have searched quite a bit here at Stackoverflow for how to solve this problem effectively, but I still haven't found exactly what I'm looking for.
Basically, I have three columns that I want to evenly distribute in the center and center. However, when I set col-md-4 for all three columns, the end result is all three are grouped together. How can I make space between columns? Like 10-15px or so without forcing them to another line.
Here is a sample code:
<div class="row-fluid"> <div class="col-md-4"> <p>Stuff that fills this column</p> </div> <div class="col-md-4"> <p>Stuff that fills this column</p> </div> <div class="col-md-4"> <p>Stuff that fills this column</p> </div> </div>
Maybe I'm just doing something wrong, but I canβt figure out how to do it. I have seen several people suggest just putting them in another div with some addition, but this does not seem to work for me.
Thanks for any help! I am open to all suggestions!
html css twitter-bootstrap
Quiver
source share