21
28

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 3 years have passed since last update.

position:sticky;について

Last updated at Posted at 2019-12-26

##position: sticky;とは
スクロールに応じて要素を固定表示にすることができます。
他のpositionプロパティ(static, relative, absolute, fixed)の違いは、DOMのフローで閉めるスペースです。

staticとrelativeはドキュメントのフローで自然なスペースを保ちますが、absoluteとfixedの場合本来配置されるべきスペースは取り除かれ、フロートしているような振る舞いをし、周りの要素はabsoluteとfixedがそこに存在しないかのような挙動をとります。

stickyはこれらの両方の特性を持ったプロパティといえます。

See the Pen oNgwvGN by arichel (@arichel_unt) on CodePen.

CSSのstickyには、sticky itemとsticky containerという2つの主要部分が必要となります。

###sticky item
sticky itemとは、position: sticky;でスタイルを定義した要素です。ビューポートのポジションが定義したポジションと一致すると、その要素はフロートします。
###sticky container
sticky containerとは、sticky itemをラップする親要素です。これはsticky itemがフロートすることができる最大のエリアになります。
position: sticky;で要素を定義すると、自動的に親要素がsticky containerとして定義されます。sticky containerはsticky itemの範囲であり、アイテムはsticky containerから出ることはできません。
headerをフロートさせて使う場合は、headerのフロートの終着地点までラップする要素をsticky containerとなるよう指定する必要があります。
#要素の位置関係による挙動の違い
stickyにより固定させる要素のDOM上の位置関係によって、挙動の違いが生まれます。
###同じブロック内にある兄弟要素
stickyが2つ、同じsticky containerの中に存在する場合、sticky要素が覆いかぶさるように表示されます。
bodyをsticky containerとした、各セクションがsticky itemのデモです。

See the Pen WNbOzBB by arichel (@arichel_unt) on CodePen.

###異なるブロックにある場合 1つ目のsitcky itemを2つ目のsticky itemが上に押し上げているように表示されます。 sticky itemはsticky containerの中でしかフロートができないので、1つ目のsticky itemのフロートが切れた瞬間に2つ目のsticky itemが到着するのでこのように見えます。 各セクション内のh2タグをsticky itemとしたデモです。

See the Pen dyPReeq by arichel (@arichel_unt) on CodePen.

##問題点 position: sticky;を定義した要素がコンテナの内側にある唯一の要素の場合、うまく機能しません。 その要素のコンテナが要素を貼り付けることができる唯一のエリアだからです。その要素は兄弟要素上でしかフロートできないため、唯一の要素である場合にはフロートすることができなくなります。 また同じ理由として、position: sticky;を指定した要素より、親要素の方が高さが短い場合も、意図したフロートの挙動にはならないので注意が必要です。 これを回避する方法は、heightを指定する事です。

See the Pen vYEZRwR by arichel (@arichel_unt) on CodePen.

そのほか

  • 先祖要素にoverflow:hidden;もしくはoverflow:auto;がかかっていると効かない
  • overflow:scroll;で高さの指定がないと効かない(高さの指定があると効く)

ブラウザ・サポートはこちらをご覧ください。

21
28
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
21
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?