tip-archive icon indicating copy to clipboard operation
tip-archive copied to clipboard

z-index 정리

Open JaeYeopHan opened this issue 4 years ago • 0 comments

Description

<div id="foo">
foo
</div>
<div id="bar">
bar
</div>

<styles>
#foo {
  z-index: 2;
}
#bar {
  position: fixed
}
<styles>

#foo의 z-index가 #bar보다 커도 적용이 되지 않는다. #bar가 position이 fixed(or absolute)이기 때문이다. 따라서 #fooposition: relative를 적용해준다.

<styles>
#foo {
  position: relative
  z-index: 2;
}
#bar {
  position: fixed
}
<styles>

JaeYeopHan avatar May 08 '20 02:05 JaeYeopHan