I'm trying to remake the google search website for fun and I need to vertically center all the text in the footer.
code and how it looks like:
Here is how to center text, or any element using flexbox:
display: flex
. Now:justify-content: center
will center children horizontallyplace-items: center
will center children vertically.div {
width: 100%;
height: 100px;
background: #ccc;
display: flex;
justify-content: center;
place-items: center;
}
<div>
This is centered
</div>