0
我想gui在海報上。這兩個要素必須有固定的位置。如果我將gui的位置設置爲絕對但固定不起作用,它工作正常。z指數固定父母和孩子
#gui {
width: 250px;
height: 50px;
position: fixed; // If I change to absolute then it works.
background-color: green;
}
#poster {
width: 250px;
height: 250px;
position: fixed;
background-color: red;
z-index: -1;
}
<div id='gui'>
<div id='poster'></div>
</div>
https://jsfiddle.net/pfpj03f5/
爲什麼不是這方面的工作?在#gui上將z-index設置爲正數也不起作用。
你必須做的div獨立否則它不會工作.. –
可能重複http://stackoverflow.com/questions/12463658/parent-child-with-position-fixed-parent-overflowhidden-bug –