For my project, I am utilizing bootstrap and I need to create space between divs. Here is the code I am using:
<div className="container">
<div className="row">
<div className="col-lg-4 col-md-4 col-sm-12 col-12 box">a</div>
<div className="col-lg-4 col-md-4 col-sm-12 col-12 box mr-1 ml-1">b</div>
<div className="col-lg-4 col-md-4 col-sm-12 col-12 box">c</div>
</div>
</div>
The issue I'm facing is that the margin is not pushing the other divs and breaking the row layout. In essence, the margin is not being applied correctly.
How can I properly add margin between these divs?