首页 > 解决方案 > 我如何覆盖 ngx carousel css 以禁用导航

问题描述

我在我的 Angular 项目中使用 ngx carousel 并想禁用导航箭头。我已经尝试过以下代码,但没有一个有效

 .carousel-control {
 display: none;
 }

看起来我的 css 无法覆盖 ngx bootstrap css。谁能帮我这个

标签: cssangularngx-bootstrap

解决方案


尝试

::ng-deep .carousel-control {
  display: none;
}

但仅供参考 ng-deep 不是一种好的做事方式,理想情况下,ngx 轮播中应该有 @Input 字段,以便您可以配置导航。


推荐阅读