如何使用html表而不是图像删除ngb-carousel中的指标

时间:2018-04-02 06:57:27

标签: angular html-table carousel

目前正在开展一个角度5项目,需要将渲染的html表放在旋转木马上。我尝试使用ngb-carousel并且它呈现了预期的输出,但是我需要移除底部的指示器,如附图所示。

enter image description here

1 个答案:

答案 0 :(得分:0)

你可以使用CSS:

在你的模板中:

<ngb-carousel class="no-indicators">

在全局CSS样式表中:

.no-indicators .carousel-indicators {
  display: none;
}

Demo