为什么我的z-index被忽略?
<core-drawer-panel>
<div drawer>
Test
</div>
<div main>
<core-icon-button core-drawer-toggle icon="menu" style="z-index:1000 !important;"></core-icon-button>
<my-element style="z-index:-1000 !important;"></my-element>
</div>
</core-drawer-panel>
my-element有<core-animated-pages fit>
,它根本不关心z-index?它一直保持在最佳状态?
编辑:
z-index:1000 !important
不起作用。
但在my-element
我可以执行此操作<core-animated-pages fit selected="{{subPage}}" style="overflow:auto; z-index:-1;">
但是溢出不起作用意味着我看到滚动条但它不滚动?
答案 0 :(得分:1)
在元素上添加position:relative
和z-index。如果您没有明确设置位置,则z-index不起作用(也适用于“普通”HTML)。