我在 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%"/>
添加float:left;
输入按钮
width:49%
在两个按钮中使用。
尝试这个 :
<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;"/>