I would like to center a button horizontally and verticaly in a middle of a div
for my project.
Here is the html code:
<div class="PageHeader_wrapper" id="header-buttons">
<form id="CreateAccount" action="CreateAccount.php" method="post">
<input type="submit" value="Create an account">
</form>
</div>
and the CSS here :
#header-buttons {
margin-right: 35px;
float: right;
height: 68px;
width: auto;
border: 1px solid red;
}
Js fiddle here: https://jsfiddle.net/m635r2rf/10/