我在html5中有两个按钮。我希望两者都显示在同一条线上,但它们会出现在不同的行中。我该怎么办。我把我的代码放在下面:
<input type="button" class="btn btn-danger" id="stop" style="width:50%;"/>
<input type="button" class="btn btn-reset" id="reset" style="width:50%"/>
答案 0 :(得分:4)
在输入按钮中添加float:left;
答案 1 :(得分:1)
在两个按钮中使用width:49%
。
答案 2 :(得分:0)
试试这个:
<input type="button" class="btn btn-danger" id="stop" style="width:50%; display:inline-block;"/>
<input type="button" class="btn btn-reset" id="reset" style="width:50%; display:inline-block;"/>