我无法通过css隐藏ngb旋转木马指示器和prev next控制, 有没有隐藏它的选项?
为了影响ng引导组件的css,您必须禁用ViewEn封装。
从@angular/core导入:
import { ViewEncapsulation } from '@angular/core'
@Component({ encapsulation: ViewEncapsulation.None, selector: 'your-template-name', styleUrls: ['your-template-name.component.scss'], template: ` ... ` })