I have a task to make a one page form, it only consist two input form and a save button.
I make it in a col-md-9 align center. but the form only horizontally centered, i want to make it vertically centered too.
<div class="col-md-9 no-float" align="center">
<form>
FIRST INPUT HERE
SECOND INPUT HERE
BUTTON
</form>
</div>
and
.col-md-9
{
display: table-cell;
width: 75%;
height:100vh;
}
.col-md-9.no-float {
float: none;
}