I create a page in bootstrap where I use 4 columns inside a row. The code:
<div class="row text-center"> <div class="col-md-3"> </div> <div class="col-md-3"> </div> <div class="col-md-3"> </div> <div class="col-md-3"> </div> </div>
I added a class for each column so that everyone can have a border.
.cliente { margin-top:10px; border: #cdcdcd medium solid; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; }
The problem is that the borders should be separated by a natural bootstrap mesh groove, and this does not work.
could you help me? Thank you
twitter-bootstrap border gutter
Mauro barrionuevo
source share