按钮有不同的排列

时间:2013-07-18 04:45:58

标签: html css html5

我在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%"/>

3 个答案:

答案 0 :(得分:4)

在输入按钮中添加float:left;

小提琴 - http://jsfiddle.net/wWYgZ/2/

答案 1 :(得分:1)

在两个按钮中使用width:49%

Demo here

答案 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;"/>