Vertically Align Text

Hello!

I'm trying to vertically align an H1's content. I have tried vertical-align: middle;. A work-around was to display:flex then align-items:center. What's another way to do this without flex?

.heading {
    text-align: center;
    min-height: 100px;
    margin: 0;
}
image.png
Was this page helpful?