I want to have a horizontal line between the two columns of bootstrap . I have tried a lot but i did not get any solution for it . I want it as below :
[ Col 1 ] [ Col 2 ] [ Col 3 ]
[ ] [ ] [ ]
[ ] [ ] [ ]
[ Content ]-----[ Content ]-----[ Content ] ---->This is the horizontal line .
[ ] [ ] [ ]
[ ] [ ] [ ]
I want the horizontal line as above between the columns of bootstrap . I am working on React ,my code is below :
<Wrapper2>
<div >
<div className="row">
<div className="col-md-4 col-sm-12">
Col 1
</div>
<div className="col-md-4 col-sm-12">
Col 2
</div>
<div className="col-md-4 col-sm-12">
Col 3
</div>
</div>
</div>
</Wrapper2>
Any help regarding this will be helpful for me .
I hope this will lead you to your output