我正在使用bootstraps主站点的代码来创建按钮横幅。我想知道如何在保持宽度相同的同时添加更多按钮。另外还有style =“margin-top:10px;”我该如何调整横幅?
Bootstrap网站:http://getbootstrap.com/components/
<div class="btn-group btn-group-justified">
<div class="btn-group">
<button type="button" class="btn btn-default">Left</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-default">Middle</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-default">Right</button>
</div>
</div>