3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

flexboxを使ってheaderメニューを作る【学習メモ】

Last updated at Posted at 2019-06-18

#はじめに
headerでメニューを作る時、いつもはfloatを使って作成していましたが、今回はflexboxを使って作成してみたいと思います。

#flexboxとは?
CSS3から使えるようになった機能の一つで、flexboxを使うと要素の配置を簡単に揃えることができます。
子要素の配置を変える時、親要素に**display: flex;**を置くと使えるようになります。

今回はheader要素(親)の中央にメニュー(子)を置きたいので、垂直方向に中央揃えにすることができる**align-items: center;を使用していきます。
また子要素を両端に分けることができる
justify-content: space-between;**を使い、headerのタイトルとメニューを分けています。
他にも配置方法はたくさんあるのでこちらを参考にしてください。

#コード

index.html
<body>
    <header>
        <h1 class="title">header!!</h1>
        <nav class="nav-menu">
            <ul class="menu">
                <li class="menu-item"><a class="menu-link" href="">メニュー1</a></li>
                <li class="menu-item"><a class="menu-link" href="">メニュー2</a></li>
                <li class="menu-item"><a class="menu-link" href="">メニュー3</a></li>
                <li class="menu-item"><a class="menu-link" href="">メニュー4</a></li>
            </ul>
        </nav>
    </header>
</body>
style.css
body {
    margin: 0;
    padding: 0;
}

header {
    box-sizing: border-box;
    background: #c1ff0a;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}
.menu {
    display: flex;
    list-style: none;
}
.menu-item {
    margin-right: 20px;
}
.menu-link {
    text-decoration: none;
}

#画面
スクリーンショット 2019-06-18 22.09.25.png

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?