bootstrap表单居中
时间: 2023-09-02 18:05:41 浏览: 177
bootstrap 表格
你可以用以下的 CSS 代码来将 Bootstrap 表单居中显示:
```css
.form-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.form-container form {
width: 50%;
}
```
这里我们创建了一个 `.form-container` 的容器元素,将其设置为 `display: flex`,并使用 `justify-content: center` 和 `align-items: center` 属性将表单元素居中对齐。我们还将表单的宽度设置为 `50%`,以确保它不会占据整个容器。
在 HTML 中,你可以将表单元素放置在 `.form-container` 容器中:
```html
<div class="form-container">
<form>
<!-- 表单元素 -->
</form>
</div>
```
阅读全文