How to remove column spacing in bootstrap

Asked

Viewed 328 times

0

Good afternoon everyone, I am working with columns and I came across a problem that has been hitting me for a long time, as you can see in this example https://jsfiddle.net/qt542gLo/, I need that the "Box 3" and also the "Box 5" are not there below, I want that the elements of the left side are not affected by the height of the elements of the opposite side. I tried several ways to adjust the margin but it is not working, I thank you already!.

  • You have to review the layout page, because your big box is breaking it

1 answer

1


Your layout is popping bootstrap columns, the sum of all column sizes needs to be equal to 12, so you need to define how many columns your layout will have, if there are two columns, the composition 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 out an example with two columns in this Plunk.

More information you can get directly from the Bootstrap website at this link.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.