I want to align multi-paragraph of text vertically within a div. Here are my codes.
HTML
<div class="valign">
<h3>Title of the paragraph</h3>
<p>Lorem ipsum</p>
<p>Next paragraph</p>
</div>
CSS
.valign {
display: flex;
align-items: center;
height: 200px;
}
But it doesn't work. Your solution is welcome.