最近我开始使用 twitter bootstrap 创建我的第一个响应式设计。
我的问题是我尝试了一些仍然无法正常工作的东西,如果我用一类跨度包裹我,输入宽度不正确
代码
<div class="container">
<div class="row-fluid">
<form class="span4" method="POST" action="http://localhost/mjb/index.php/" accept-charset="UTF-8">
<label for="username">Username</label> <input class="span4" type="text" name="username" value="" id="username">
<label for="password">Password</label> <input class="span4" type="password" name="password" id="password">
<button class="btn btn-block btn-success">Login</button>
</form>
</div>
</div>
有人可以指出我做错了什么吗?