4

我正在尝试使用 bootstrap 3 制作一个响应式登录表单。但是,当我在移动设备上对其进行测试时,页面显得很小,并且必须对其进行缩放。我希望它以手机的全宽显示。我做错了什么??

页面:页面

编码:

    <input type="text" placeholder="Login" />
    <input type="text" placeholder="Password" />
    <br />
    <button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
</form>

4

1 回答 1

6

尝试将此添加到您的 HTML HEAD..

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
于 2013-09-09T15:49:47.753 回答