LoginSignup
1
3

More than 5 years have passed since last update.

position: fixed; とは

Posted at

positioin: fixed; 簡単にするとこれや!

  特定の位置に固定すること!

どんな時に使うか

 スクロールしても変わらないので、headerとかに使いましょー

こんな書き方もできます

/* header */

.一番上のクラス{
position: fixed;
width: 100%;
background: transparent;
padding: 15px 0px;
transition: all 0.5s;
z-index: 99999;
}

.fixed {
position: fixed;
top:0;
left:0;
width: 100%;
background-color: #00967f;
padding: 0px;
}

1
3
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
1
3