LoginSignup
1
2

More than 3 years have passed since last update.

z-indexには使用条件があるのじゃ

Posted at

z-indexを使う時についつい忘れること

端から使っていると気にならず使うものなので意識していなかったが、今回保守案件ですでに作られたCSSを触っている時に気づいたことがきっかけです。

positionがいる

z-indexを使うときはpositionがあって、relativeか、absolut、fixedのどれかではならず、staticでは使えない。

ググると意外と『z-index 使えない』を多く見かける。気をつけよう。記述する際には以下のようになる。

.hoge {
  z-index: 50px;
  position: relative;
}
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