Menu
Coddy logo textTech

ウェルカムヘッダー

CoddyのHTMLジャーニー「Styling with CSS」セクションの一部 — レッスン 68/76。

challenge icon

チャレンジ

簡単

次に、.welcomeクラスを使用してヘッダーのスタイルを設定します。これはユーザーがページを訪れたときに最初に目にするものなので、目立たせる必要があります。 

.welcomeセクションは固定メニューの背後に隠れています。完全に表示されるように、下に押し出す必要があります。

以下の手順に従ってください:

  1. CSSで.welcomeセクションを選択します。
  2. 上部にスペースを作るために、padding-topプロパティを追加します。
  3. 間隔が異なる画面サイズに適応するように、値を10vhに設定します。

10vhは画面の全高の10%を占めます。これにより、固定のピクセル値と比較して、さまざまなデバイス間でレイアウトがより柔軟になります。

自分で試してみよう

<html>
    <head>
        <title>Swim with Whales in Tonga</title>
        <link rel="stylesheet" href="styles.css">  
    </head>
    <body>
        <nav class="menu">
            <a href="#">About</a>
            <a href="#">Experience</a>
            <a href="#">Contact</a>
        </nav>    
        <header class="welcome">
            <h1>Swim with Whales in Tonga</h1>
            <p>Experience the magic of swimming alongside majestic humpback whales.</p>
        </header>    
        <section class="about">
            <h2>About Tonga</h2>
            <img src="https://upload.wikimedia.org/wikipedia/commons/8/88/Hawaiian_Islands_Humpback_Whale_National_Marine_Sanctuary_breaching_2018.png">
            <p>Tonga is a stunning Polynesian archipelago in the South Pacific, famous for its crystal-clear waters and vibrant marine life. From July to October, humpback whales migrate here to breed, offering a rare chance to swim with these gentle giants. Beyond whale encounters, Tonga boasts pristine beaches, lush tropical landscapes, and a rich cultural heritage. Visitors can explore traditional villages, experience authentic Tongan hospitality, and enjoy activities like snorkeling, diving, and sailing. Whether you're seeking adventure or relaxation, Tonga provides an unforgettable escape into nature’s beauty.</p>
        </section> 
        <section class="contact">
            <h2>Plan Your Adventure</h2>
            <table>
                <tr>
                    <td>Phone Number</td>
                    <td>+676 123 4567</td>
                </tr>
                <tr>
                    <td>Email</td>
                    <td>info@tongawhales.com</td>
                </tr>
            </table>
    </section>
</body>
</html>

Styling with CSSのすべてのレッスン