Bootstrap: add margin/padding space between columns

前端 未结 14 2270
梦毁少年i
梦毁少年i 2020-12-01 01:45

I\'m trying to put some extra margin/padding space between columns on my Bootstrap grid layout. I\'ve tried this but I don\'t like the result. Here is my code:



        
14条回答
  •  悲哀的现实
    2020-12-01 02:30

    A solution for someone like me when cells got background color

    HTML

    a
    ba
    ba
    b
    a
    b

    CSS

    .cssBox {
      background-color: red;
      margin: 0 10px;
      flex-basis: calc(50% - 20px);
    }
    

提交回复
热议问题