フォームのみが存在するページがあり、フォームを画面の中央に配置したい。
<div class="container">
<div class="row justify-content-center align-items-center">
<form>
<div class="form-group">
<label for="formGroupExampleInput">Example label</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example input">
</div>
<div class="form-group">
<label for="formGroupExampleInput2">Another label</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Another input">
</div>
</form>
</div>
</div>
justify-content-center
水平方向のフォームを揃えたが、私は垂直に整列する方法を見つけ出すことはできません。私が使用しようとしましたalign-items-center
とalign-self-center
、それは動作しません。
何が欠けていますか?
<section>
タグを使用してもよろしいですか、または<div>
ビューポートでコンテンツを水平および垂直に中央揃えするためにsに固執する必要がありますか?色や背景画像を変更するセクションがあるページがある既存のサイトを持っています。