Bootstrap CSS space between buttons in navbar

前端 未结 3 535
一整个雨季
一整个雨季 2021-01-12 10:25

How can I make space between buttons in navbar? I usually do that with  but it doesn\'t work now. Here\'s an JSfiddle of how it looks:

http://j

3条回答
  •  误落风尘
    2021-01-12 11:10

    Copy & paste this to your style.css and assign it as class attribute:

    .btn-margin-left {
        margin-left: 2px;
    }
    .btn-margin-right {
        margin-right: 2px;
    }
    

    Usage

    Link
    
    
    

提交回复
热议问题