css – 删除Material Stepper标题

前端之家收集整理的这篇文章主要介绍了css – 删除Material Stepper标题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想摆脱材料步进器上的标题导航.请建议我该怎么办?
我尝试设置以下css但似乎没有工作:

.mat-horizontal-stepper-header-container{display: none}

这是步进器的stackblitz链接.
https://stackblitz.com/edit/angular-material2-beta-ybbnhe?file=app%2Fapp.component.html

enter image description here

最佳答案
你需要使用:: ng-deep的组合来绕过shadow DOM和!important标志来绕过Materials自己的样式:

::ng-deep .mat-horizontal-stepper-header-container {
  display: none !important;
}
原文链接:https://www.f2er.com/css/427257.html

猜你在找的CSS相关文章