gpt4 book ai didi

css - Angular Material 工具栏阴影

转载 作者:技术小花猫 更新时间:2023-10-29 10:22:18 27 4
gpt4 key购买 nike

我是 material2 的新手 我试图将主应用程序工具栏固定在屏幕顶部问题是海拔无法正常工作(内容隐藏了工具栏的阴影)我这是我的 HTML 代码

.app-content {
height: calc(100% - 64px);
overflow: auto;
}
<md-toolbar class="mat-elevation-z5" color="primary" style="z-index: 100!important;">

<button md-icon-button (click)="start.open()">
<md-icon class="demo-toolbar-icon">menu</md-icon>
</button>
<span>E-Learning</span>

<span class="demo-fill-remaining"></span>
</md-toolbar>
<div class="app-content" style="z-index: 0!important;">
<div class="workspace">
<el-teacher></el-teacher>
</div>
</div>

enter image description here

最佳答案

您必须为您的元素提供位置 relative/absolute/fixed/static 才能使 z-index 正常工作。

.mat-elevation-z5 {
position: relative;
z-index: 2;
}

关于css - Angular Material 工具栏阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42415537/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com