LoginSignup
5
12

More than 5 years have passed since last update.

CSSでヘッダーを上部に固定する方法

Posted at

CSSでヘッダーを上部に固定する方法

スクロールしていっても要素を表示しておきたい時に。
備忘録的に書いておきます。

positionをfixedにする。

cssでposition: fixedにすると固定ができます。以下サンプル。

<header>
  ヘッダーを上部に固定
</header>

header {
    position: fixed;
    width: 100%;
    height: 200px;
    background-color: #d4d4d4;
}
5
12
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
5
12