Odd Bootstrap HTML Question

Hello All.

I’m having a current problem where I’m using the bootstrap column system, however when I try to add margin in between the columns together, the element in the last column drops to the next line. Thoughts?

If memory serves well you are not meant to use margins with the columns because margins are treated as extra space around the column, which would lead to exactly the issue you are having.

If there is no reason that padding can’t be used, that will likely be the best solution for you. Also keep in mind that you are meant to position/space columns horizontally with .col-* and .offset-* (the Bootstrap 3 class name is .col-*-offset-*).

I hope that helps. :slight_smile:

1 Like