100
I want to center the below <div> tag vertically.
<div>
<div class="heading"> <p>Hello</p> </div>
How to do that?
To center an element vertically or horizontally, you can use flexbox.
.heading { display: flex; align-items: center; }