我刚刚开始使用引导程序。我需要定位三个输入字段以形成一个“地址”字段。
我尝试使用以下 html:
<label for="street">Address</label>
<input class="span3" id="street" name="street" placeholder="Street"/><br/>
<input id="zipcode" class="span1 inline" placeholder="Zipcode"/>
<input id="city" class="span2 inline" placeholder="City"/>
这几乎是正确的,但尺寸有点偏
有没有更好的方法来实现这种布局(无需制作自定义样式来实现正确的宽度)?