在页面中心制作一个面板表单

Posted

技术标签:

【中文标题】在页面中心制作一个面板表单【英文标题】:make a panel form in the center of the page 【发布时间】:2013-12-05 19:01:19 【问题描述】:

所以我试图创建一个带有 Twitter Bootstrap 的表单面板到页面的中心,希望即使浏览器正在调整大小,它仍然在中心, here's 我在 jsfiddle 上尝试过的,问题是我似乎无法使其居中,有人有想法吗?完整代码在下面

<div class="container">
        <div class="row">
            <div class="panel panel-default">
                <div class="panel-body">
                    <legend>User Login</legend>
                    <form role="form">
                        <div class="form-group">
                            <label for="inputEmail">
                                Username</label>
                            <input id="inputEmail" type="text" class="form-control" placeholder="ex: John.Doe"
                                required="" />
                        </div>
                        <div class="form-group">
                            <label for="inputPassword">
                                Password</label>
                            <input id="inputPassword" type="password" class="form-control" placeholder="*******"
                                required="" />
                        </div>
                        <div class="checkbox">
                            <label>
                                <input id="chkRememberMe" type="checkbox" />
                                Remember Me
                            </label>
                        </div>
                        <button id="btnSubmit" type="submit" class="btn navbar-custom">
                            Submit</button>
                    </form>
                </div>
            </div>
        </div>
    </div>

预览:

【问题讨论】:

【参考方案1】:

请更换

<div class="panel panel-default">

有了这个

<div class="panel panel-default" style="max-width:400px;margin-left:auto; margin-right:auto;">

【讨论】:

【参考方案2】:

尝试在 div 的 style 属性中设置边距:

style="margin-left:auto;margin-right:auto;"

希望它有效...

【讨论】:

【参考方案3】:

您还可以使用列来调整面板的大小和居中,例如:

<div class="container">
    <div class="row">
        <div class="col-md-offset-3 col-md-6">
            <div class="panel panel-default">
                <div class="panel-body">
                    <legend>User Login</legend>

                    <form role="form">
                        <div class="form-group">
                            <label for="inputEmail">Username</label>
                            <input id="inputEmail" type="text" class="form-control" placeholder="ex: John.Doe" required="" />
                        </div>

                        <div class="form-group">
                            <label for="inputPassword">Password</label>
                            <input id="inputPassword" type="password" class="form-control" placeholder="*******" required="" />
                        </div>

                        <div class="checkbox">
                            <label>
                                <input id="chkRememberMe" type="checkbox" />
                                Remember Me
                            </label>
                        </div>

                        <button id="btnSubmit" type="submit" class="btn navbar-custom">Submit</button>
                    </form>
                </div>
            </div>
        </div>
    </div>
</div>

【讨论】:

以上是关于在页面中心制作一个面板表单的主要内容,如果未能解决你的问题,请参考以下文章

如何在页面中心的多个面板中仅对齐两个面板的分组文本?

插件管理页面中的 Ajax 表单不起作用

如何在不重新加载页面的情况下获取数据表单数据库?

在DW中制作一个表单后如何使表单内容提交到指定页面?

使用 Bootstrap 主题和在页面中心对齐表单

微信后台怎么弹出表单