0

I'm creating a card with html, css and bootstrap and I'm using the bootstrap class col to define the columns. My problem is when separating the divs, how is it possible to define 3 divs with col 4 and get a space between them without leaving the place? when I give a style of margin-left: 5px; for example, the third div goes to the bottom line

enter image description here

Bruno
  • 173
  • 3
  • 8

1 Answers1

1
<div class="row">
    <div class="col-xs-4">
        <div class="card">...</div>
    </div>
    <div class="col-xs-4">
        <div class="card">...</div>
    </div>
    <div class="col-xs-4">
        <div class="card">...</div>
    </div>
</div>

And:

.card {
    margin: 0 5px;
}
Roland Rácz
  • 2,879
  • 3
  • 18
  • 44