更改引导输入字段的宽度

时间:2016-02-16 23:22:55

标签: html

我已经制作了一个输入表单,其中一个输入是一个数量,一切正常但是该字段似乎占据了我整个浏览器的宽度,任何人都知道为什么?

<input type="text" class="form-control" placeholder="2.00" width="50px" name="amount"><br>

2 个答案:

答案 0 :(得分:2)

<input type="text" class="form-control" placeholder="2.00" style="width:50px" name="amount"><br>

使用样式;)

答案 1 :(得分:1)

如果你想让整个表格有一定的长度(50%) 使用:

  <form class="form-horizontal" style="width:50%;">
     //your form
  </form>

或:

 <div style="width:50%;">
    <form class="form-horizontal">
       //your form
    </form>
 </div>

或:

   <input type="text" class="form-control" placeholder="2.00" width="50px" name="amount" style="width:50%;"><br>

我使用了第二个选项。 example