In the following code I am trying to put all the headings be align vertically in the middle but it is not working with vertical alignment as you can see on my jsfiddle : https://jsfiddle.net/Wosley_Alarico/exp1zjh6/1/
html:
<div class="captions">
<h2>design</h2>
<h1>create</h1>
<h2>print</h2>
</div>
css:
.captions {
display:flex;
vertical-align:middle;
}
h1{
font-size:28pt;
}
How can I put the h1 in the middle with the h2's?