0
イメージを左側に、ヘッダーを上部に置き、ヘッダーの下に段落を入れたいとします。イメージの横にヘッダーと段落を整列する方法
例:私は今持っているLink
コード:
.code {
\t margin-left: 10%;
\t clear: left;
\t margin-bottom: 100px;
}
.code h1 {
\t font-size: 25px;
\t font-family: 'Kurale', serif;
\t font-weight: bold;
\t vertical-align: top;
\t margin-left: 20px;
\t display:inline-block;
}
.code p {
\t font-family: 'Spectral', serif;
\t vertical-align: middle;
}
.code img {
\t display: inline-block;
}
<div class="code">
<img src="code.jpg" style="width: 100px; height: 100px; border-radius:15%; overflow:hidden;">
<h1>Website Development:</h1>
<p>We do stuff</p>
</div>
<div class="code">
<img src="game.jpg" style="width: 100px; height: 100px; border-radius:15%; overflow:hidden;">
<h1>Game Development</h1>
</div>