css - Z-index 在 Internet Explorer 11 中不起作用

标签 css internet-explorer-11 angular2-template

我在 IE 11 上遇到了 z-index 问题,弹出消息中的其他元素下方出现了一个下拉菜单。让我给你看一下从页面上截取的小草图。

Pop-up sample

我研究了很多可能的解决方案,但没有一个适合我。我也将 PrimeFaces 与 Angular 2 一起使用。我发现 this solution在 IE 中解决此类问题:

<div style="position: relative; z-index: 3000">

    <div style="position: absolute; z-index: 1000">

         [ ... ] <!-- The drop down menu will be here -->

    </div>
</div>

我尝试在我的代码中使用这种方式,但没有用。 :(

<p-dialog header="Assign claim {{ vm.request.id }}" [(visible)]="vm.isDisplayed" [width]="700" [modal]="true" >
<div class="ui-g form-group">
    <div style="z-index: 3000">

        <div class="ui-g-6">
            <h4>Lorem ipsum</h4>
            {{vm.request.responsible}}
        </div>

        <div class="ui-g-6">
            <h4>et dolo</h4>
            <div style="z-index: 1000"> <!-- This dropdown menu should to appear over the form, not behind :(  -->
                <p-dropdown class="popup-dropdown" [(ngModel)]="vm.id" [options]="vm.users" [autoWidth]="false" (onChange)="changeAssignedUserId($event.value)">
                </p-dropdown>
            </div>
        </div>        
        <div class="ui-g ui-g-12"></div>

        </div>

</div>

<!-- More awesome code! -->

谁能帮帮我?

在此先感谢大家。 阿夏。

最佳答案

遗憾的是,您无法重新定义 z-index 的子组件的父组件已经定义了 z-index。子级在存在时从其父级继承 z-index

您可以使用 z-index: -1; hack,但这并不是一个真正稳定且可取的解决方案...

最好的方法是为您的“兄弟”组件定义z-index(例如,.ui-g-6)。

关于css - Z-index 在 Internet Explorer 11 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45589195/

相关文章:

html - 更改默认警告框的样式

html - 重新排序网格项

php - 具有多个 Mysql 结果的交替 CSS 样式

html - 为什么 `Box-shadow`在IE11下不显示在底部?

html - IE10 CSS动画问题

Angular 2 引导过程

angular - 延迟导航到下一页

javascript - 提交表单后按钮颜色保持不变

css - Internet Explorer 显示 : table issue

angular - 通过服务可观察到的失败在组件之间进行通信