I'm stuck with a spacing problem. Here's the code:
.border {
border: 1px solid red;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<div class="row">
<div class="col-md-4 border">
<p>.......</p>
</div>
<div class="col-md-4 border">
<p>.......</p>
</div>
<div class="col-md-4 border">
<p>.......</p>
</div>
</div>
Without the border, it looks find. But add the border, and they touch one another. Looks very ugly. Adding margin-left and right doesn't help. The last column will be dumped on the next row. Compensating the margin with a negative padding doesn't work either.
I'm out of options. What do I need to do to add some space between the columns?