1. ホーム
  2. Web制作
  3. CSS

[CSSレイアウト例】フレックスレイアウトを使って簡単にページレイアウトを実現するサンプルコード

2022-02-03 13:25:09

さっそくですが、コードを見てみましょう。

1. 上段と中段のレイアウト

<!DOCTYPE html>

    <html lang="en">
    <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>Document</title>
     <style>
     body {
     position: absolute;
     left: 0; right: 0; top: 0; bottom: 0;
     padding: 0; margin: 0;
     display: flex;
     flex-direction: column;
     }
     .header, .footer {
     height: 50px;
     }
     .body {
     flex-grow: 1;
     background-color: #DDD;
     }
     </style>
    </head>
    <body>
     <div class="header">Header</div>
     <div class="body">Content</div>
     <div class="footer">Footer</div>
    </body>
    </html>

このように表示されます。

2. 左右のレイアウト。

    <!DOCTYPE html>
    <html lang="en">
    <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>Document</title>
     <style>
     body {
     position: absolute;
     left: 0; right: 0; top: 0; bottom: 0;
     padding: 0; margin: 0;
     display: flex;
     }
     .left, .right {
     height: 100%;
     }
     .left {
     width: 250px;
     background-color: rgba(255,0,0,0.3);
     }
     .right {
     display: flex;
     flex-direction: column;
     }
     .header, .footer {
     height: 50px;
     }
     .right, .content {
     flex-grow: 1;
     }
     .content {
     background-color: #DDD;
     }
     </style>
    </head>
    <body>
     <div class="left">LeftNav</div>
     <div class="right">
     <div class="header">Header</div>
     <div class="content">Content</div>
     <div class="footer">Footer</div>
     </div>
    </body>
    </html>

このようなページになります。

以下、いくつかの主要なスタイルについて説明しますので、お好きなレイアウトを設計してください。

flex-grow: 1; // indicates that the container takes up the remaining space when the width of the main axis is redundant
position: absolute; left: 0; right: 0; top: 0; bottom: 0; // This set of styles allows the element to fill the positioned parent element

今回はフレックスレイアウトを使って簡単にページレイアウトを実装するサンプルコードを紹介しましたが、フレックスページレイアウトに関連する内容はスクリプトハウスの過去記事を検索するか、引き続き以下の関連記事を閲覧してください、今後ともスクリプトハウスをよろしくお願いします!(`・ω・´)