양식 만 존재하는 페이지가 있고 화면 중앙에 양식을 배치하고 싶습니다.
<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>
됩니까? 아니면 뷰포트에서 가로 및 세로로 콘텐츠를 중앙에 배치 하려면 하나를 사용해야 합니까? 색상 및 배경 이미지를 변경하는 섹션이있는 페이지가있는 기존 사이트가 있습니다.