I want to center both horizontally and vertically the page.
<body>
<div class="container">
<main>
<section>
<nav>
<ul>
<li>
<a href="create/bookForm.html">Create Book</a>
</li>
<li>
<a href="create/authorForm.html">Create Author</a>
</li>
<li>
<a href="create/publisherForm.html">Create Publisher</a>
</li>
</ul>
</nav>
</section>
</main>
</div>
</body>
While I achieved success with horizontal centering by setting all width to 100% and container's width to 50% and margin auto. However the same method doesn't seem to work vertically (height 50%).
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
width: 100%;
}
body {
height: 100%;
width: 100%;
color: #444;
font-family: sans-serif;
}
.container {
height: 50%;
width: 50%;
margin: auto;
}