我不知道如何使用flexbox將<h1>
正確標題放在頁面的中心。如何居中橫向和縱向標題(flexbox)?
這裏是一個鏈接:https://jsbin.com/movevezesi/edit?html,css,output
預期的效果:https://tutorialzine.com/media/2016/06/landing-page-hero.jpg
HTML:
<div class="wrap">
<header class="header">
<a class="logo" href="#">logo</a>
<ul class="nav">
<li><a href="#">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Sign In</a></li>
<li><a href="#">Free Trial</a></li>
</ul>
</header>
<div class="hero">
<h1>how to center horizontally and vertically this text ???</h1>
<h2>any</h2>
<h3>ideas???</h3>
</div>
</div>
CSS: