フォームのみが存在するページがあり、フォームを画面の中央に配置したいと考えています。
<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
が、機能しません。
私は何が欠けていますか?