スクロールした時、他の要素と重ならないように、ヘッダーを上部に固定したい。
:html
固定するためには position: fixedを使用し、
他の要素(文字など)と重ならないようにするためにz-indexを指定する。
:css
.header {
position: fixed;
z-index: 99;
width: 100%;
background-color: white;
}
Go to list of users who liked
More than 3 years have passed since last update.
スクロールした時、他の要素と重ならないように、ヘッダーを上部に固定したい。
:html
固定するためには position: fixedを使用し、
他の要素(文字など)と重ならないようにするためにz-indexを指定する。
:css
.header {
position: fixed;
z-index: 99;
width: 100%;
background-color: white;
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked