h3
タグとp
タグを別々の行に表示するには、h3
タグを上部に表示するにはどうすればよいですか?フレックスアイテムを積み重ねてスタックする
このコードは大きなプロジェクトの一部ですが、別の行の中心に要素を配置する方法は他にもありますが、(大きなプロジェクトの)親要素に影響を与える必要はなく、より単純なフレックスボックスを使用する。
.hover-over-windows-style {
height: 100%;
background: red;
/* Fails because h3 and p tags are not on separate lines */
display: flex;
align-items: center;
/* padding-top of 25% nearly works but content isnt in centre of parent div */
}
#parent {
height: 300px;
width: 300px;
}
<div id="parent">
<div class="hover-over-windows-style">
<h3><a href="matches/blitz.html">H3 Tag on top</a></h3>
<p>Paragraph here should be below the H3 tag, on a separate line. Not sure how to get this done. Setting 100% widths don't work and cannot display as block elements.</p>
</div>
</div>