9
7

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

あれ!? position: fixed;が効かない!?

Last updated at Posted at 2016-12-11

急になぜかposition: fixed;が効かない!
振る舞いとしては absolute になってしまう。
そんなことが2,3回あって、いい加減気付こうという戒めで書きます。

親要素に transform プロパティが与えられていないか

position: fixed; を指定している要素の親に transform プロパティを与えてしまうと、
その要素より下では position: fixed;は効かなくなってしまう様でした。

###けれども 塊でアニメーションさせた後に何かをfixedさせたい…
以下の様に、「何か変形を初期値に戻す」ということであれば

#foo {
    transform: translateY( 100% );
    transition: transform .4s;
}

#foo.is-active {
   transform: translateY( 0 );
}

変形後の transform プロパティを none にしてあげると、
子要素以下は position: fixed;が効く様になります!

#foo {
    transform: translateY( 100% );
    transition: transform .4s;
}

#foo.is-active {
   transform: none;
}

いやいや、変形後の状態で fixed させたいんだ!
ということであれば、親要素でまるっと動かすのは得策ではないと思いました。

9
7
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
9
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?