Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Having an issue reducing the amount of spacing between buttons in the same row. These buttons are wrapped in columns Spacing issue buttons JSFiddle

Is there an easy way to do this? I imagine using negative margins or padding is not necessarily desirable.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
928 views
Welcome To Ask or Share your Answers For Others

1 Answer

The problem seems to be with the padding not the margin. This piece of css removes the white space between the columns

   .form-group .col-xs-6{
      padding: 0px;
    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...