カードのレイアウト
CoddyのHTMLジャーニー「CSS Mastery」セクションの一部 — レッスン 29/43。
チャレンジ
簡単このレッスンでは、背景、ボーダー、パディングを追加し、アイコンと見出しのサイズを調整することで、個々のカードをスタイリングします。また、角を丸くし、間隔を空けることで、カードを洗練された外観に仕上げます。
CSSチャレンジ:
.featureクラスをスタイリングして、各カードに白い背景、パディング、および角丸を適用してください。- ボーダーを設定し、各カードの幅を調整してください。
- .featureクラス内の
.iconをスタイリングして、フォントサイズを変更し、下にマージンを追加してください。 .feature内のh3タグをスタイリングして、テキストの色を変更し、見出しの下に間隔を追加してください。
自分で試してみよう
<html>
<head>
<title>Hobby Club Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="hero">
<div class="container">
<h1>Welcome to Hobby Club</h1>
<p>Find your passion. Join a community. Grow your skills.</p>
<a href="#" class="btn">Get Started</a>
</div>
</header>
<section class="features">
<h2 class="section-title">Popular Clubs</h2>
<div class="cards">
<div class="feature">
<div class="icon"><img src="https://upload.wikimedia.org/wikipedia/commons/f/fa/Android_Emoji_1f4f7_red.svg" width="20px"></div>
<h3>Photography</h3>
<p>Capture the moment and share your perspective.</p>
</div>
<div class="feature">
<div class="icon"><img src="https://upload.wikimedia.org/wikipedia/commons/5/51/Emoji_u1f3a8.svg" width="20px"></div>
<h3>Art & Design</h3>
<p>Draw, paint, and bring your creative ideas to life.</p>
</div>
<div class="feature">
<div class="icon"><img src="https://upload.wikimedia.org/wikipedia/commons/e/e6/Emoji_u1f3ae.svg" width="20px"></div>
<h3>Gaming</h3>
<p>Connect with fellow gamers and play your favorite titles.</p>
</div>
</div>
</section>
</body>
</html>