如何在导航栏中的按钮之间腾出空间?我通常使用
执行此操作但现在不起作用。这是一个关于它的外观的JSfiddle:
答案 0 :(得分:11)
答案 1 :(得分:7)
复制&将其粘贴到style.css
并将其指定为类属性:
.btn-margin-left {
margin-left: 2px;
}
.btn-margin-right {
margin-right: 2px;
}
<强>用法强>
<a href="URL" class="btn btn-default btn-sm btn-margin-left">Link</a>
<button type="button" class="btn btn-default btn-sm btn-margin-left">Button</button>
答案 2 :(得分:0)
您可以在Bootstrap 4.0x中定义类内部的间距。
https://getbootstrap.com/docs/4.0/utilities/spacing/
例如
<button type="button" class="btn btn-default ml-2>Button</button>