我正在使用bootstrap来构建我的界面。我目前有3个按钮,但它们排成一排。我想要发生的是把它们放在一起。我如何实现这一目标?
以下是按钮的代码:
this.buttonOne = document.createElement("button");
this.buttonOne .className = "btn btn-primary";
this.buttonOne .innerHTML = "Create One";
this.buttonTwo = document.createElement("button");
this.buttonTwo .className = "btn btn-default";
this.buttonTwo .innerHTML = "Create Two";
this.buttonThree = document.createElement("button");
this.buttonThree .className = "btn btn-default";
this.buttonThree .innerHTML = "Create Three";
答案 0 :(得分:3)
如果您需要btn-group
,可以使用<div class="btn-group-vertical"></div>
并将按钮放在那里。
答案 1 :(得分:0)
您必须将班级btn-block
添加到按钮
答案 2 :(得分:0)
请尝试
<强>显示:块; 强>
.block_button {
display:block; }
this.buttonOne .className =“btn btn-primary block_button”;