LoginSignup
1
2

More than 3 years have passed since last update.

ホームボタンがスクロールしてもついてくるように。 ❏CSS❏

Last updated at Posted at 2019-11-12

【結論】 position: fixed;

縦長のページで、下にスクロールしてもヘッダーやボタンなどを追従させたい時。

例)

index.scss
.home_button {
  position: fixed;
  top: 10px;
  right: 10px;
  
}

これだけで勝手に追従してくれます。
top,right,left,bottomで固定させたい位置を指定できます。
今回の例ではホームボタンを左上に固定させました。



CSSだけで簡単に実装できるので非常に便利です!

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