How to remove column spacing in bootstrap

0

Good afternoon everyone, I'm working with columns and I came across a problem that's been hitting me for a long time, as you can see in this example link , I need the "Box 3" and also the "Box 5" are not down there, I want the elements on the left side not to be affected by the height of the elements on the opposite side. I tried in several ways to adjust the margin but it is not working, thank you right away!

    
asked by anonymous 02.12.2017 / 16:24

1 answer

1

Your layout is popping the bootstrap columns, the sum of all column sizes must be equal to 12, so you need to define how many columns your layout will have; if they are two columns, the layout should be done with two divs with "col-xx-6" (where xx should be replaced by md, xs, etc), if the layout has 3 columns, use three divs with "col-xx-4" and so on, you can check an example with two columns in this plunk .

More information you can get straight from the Bootstrap site this link .

    
02.12.2017 / 17:05