I have a div, and I want the input box to be place at it's center. How can I do this?
I have a div, and I want the input box to be place at it's center. How can I do this?
You can just use either of the following approaches:
.center-block {
margin: auto;
display: block;
}
<div>
<input class="center-block">
</div>
.parent {
display: grid;
place-items: center;
}
<div class="parent">
<input>
</div>