I’m making a website and I want to center a div horizontally and vertically, however, it won’t work.
Here’s the relevant HTML and CSS code for reference:
`
<div class="loginWrapper">
<div class="login">
<h1>lorem ipsum</h1>
</div>
</div>`
`
.loginWrapper {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.login {
width: 300px;
height: 300px;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
}
`
New contributor
Tennessee is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.